2

我试图弄清楚如何使用 CRACO ( https://github.com/gsoft-inc/craco ) 在创建反应应用程序中禁用文件分块。

我创建了以下 craco.config.js:

// craco.config.js
module.exports = {
  output: {
    fileName: 'static/js/bundle.js',
  },
}

但它没有任何效果。使用 CRACO 在 CRA 中禁用文件分块的配置应该是什么样的?

4

1 回答 1

7

编辑:要完全禁用分块,我相信这可能会做到。
来源:https ://github.com/facebook/create-react-app/issues/5306#issuecomment-650737697

// craco.config.js
module.exports = {
  webpack: {
    configure: {
      optimization: {
        runtimeChunk: false,
        splitChunks: {
          chunks(chunk) {
            return false
          },
        },
      },
    },
  },
}

ORIGNIAL:也许会有所帮助?

module.exports = {
  webpack: {
    configure: {
      output: {
        filename: 'static/js/bundle.js',
      },
      optimization: {
        runtimeChunk: false,
        splitChunks: {
          chunks: 'all',
          cacheGroups: {
            default: false,
            vendors: false,
            // vendor chunk
          },
        },
      },
    },
  },
  plugins: [
    {
      plugin: require('craco-plugin-scoped-css'),
    },
  ],
}
于 2021-01-19T09:01:56.623 回答