0

我正在尝试将一个大文件导入到由 webpack 2 分块和 Uglified 的反应项目中。

我们的代码被分成块我们的块之一是 29MG。我想从卡盘中排除大文件并单独加载该大文件。

如何使用 webpack 2 将大文件拆分为自己的块?

我的文件

reactComponent 导入一个 js 文件,该文件具有将页面导出为 PDF 的代码

reactComponent.js -> import createPDF.js

在 createPDF 中,我导入了一个非常大的文件,并且我想将该文件从支票中拆分出来。该文件不在node_modules 下。

createPDF.js -> import largeFile.js

我的一些 webpack 配置

     entry: {
        vendor: [
          'react',
          'react-dom',
          'lodash',
          'moment',
          'underscore',
          'redux-thunk',
          'react-bootstrap-table',
          'react-bootstrap-daterangepicker',
          'react-bootstrap-multiselect',
          'react-bootstrap',
          'react-translate-component'
        ],
        app: [ './index.js' ]
      },
      plugins: [
        // compresses the JS
        new webpack.optimize.UglifyJsPlugin({
          exclude: /^2(.*?)\.js$/i, // exclude the very large file
          compress: { warnings: false },
          sourceMap: true
        }),
        new webpack.optimize.CommonsChunkPlugin({
          name: 'vendor',
          minChunks: Infinity,
          filename: '[name].[hash].js'
        }),
      ],

是我可以拆分那个文件的一种方式吗?蒂亚!

4

1 回答 1

0

我最终这样做了,我不确定这是否是拆分包的正确方法,但它对我有用。

我在单独的块中添加了我想要的包到供应商的列表中。

   entry: {
      vendor: [
        'react',
        'react-dom',
        'lodash',
        'moment',
        'underscore',
        'redux-thunk',
        'react-bootstrap-table',
        'react-bootstrap-daterangepicker',
        'react-bootstrap-multiselect',
        'react-bootstrap',
        'react-translate-component',
        './other/fontPDF',
        './other/fontPDF.map',
        './other/exportCaseToPDF',
        'pdfmake/build/pdfmake'
      ],
      app: [ './index.js' ]
    },

所有包都进入供应商块,除了另一个文件夹下的包

    new webpack.optimize.CommonsChunkPlugin({
        name: 'vendor',
        minChunks(module, count) {
            var context = module.context;
            if (context && context.indexOf('public/newPortal/other') >= 0) {
                return false;
            }
            return true;
        },
        filename: '[name].[hash].js'
    }),

我确保只有其他文件夹下的文件才会放入新块中

    new webpack.optimize.CommonsChunkPlugin({
        name: 'other',
        minChunks(module, count) {
            var context = module.context;
            return context && context.indexOf('public/newPortal/other') >= 0;
        },
        filename: '[name].[hash].js'
    }),

我从 uglify 中排除的大文件,因为它崩溃了......

    new webpack.optimize.UglifyJsPlugin({
        exclude: /^other(.*?)\.js$/i,
        compress: { warnings: false },
        sourceMap: true
    }),
于 2019-02-02T22:08:17.387 回答