如何使用webpack分别捆绑供应商脚本和主要脚本?

时间:2019-10-13 10:08:12

标签: reactjs webpack chunks

我真的很感谢这里的帮助,在这种情况下,我想在最后的构建操作中将我的vendor.js和main.js分开。

我已经尝试过在我的package.json devDependency中循环以分离我的第三方库并将其放入vendor.js中,它可以正常工作,但是它会生成vendor.js,因为在构建过程中这是不必要的第三个库已经在我的main.js中了

这是我的weppack.config.js

var config = {
    devtool: 'eval-source-map',
    cache: true,
    entry: {
        main: path.join(__dirname, "app", "App.js"),
    },
    output: {
        path: path.join(__dirname, 'scripts', 'js'),
        filename: '[name].js',
        chunkFilename: '[name].js',
        sourceMapFilename: '[file].map',
        publicPath: '/scripts/js/'
    },
    module: {
        rules: [
            {
                test: /\.js$/,
                exclude: /node_modules/,
                use: {
                    loader: 'babel-loader',
                    options: {
                        presets: [
                            ['es2015', { modules: false }],
                            'react',
                        ],
                        plugins: [
                            'syntax-dynamic-import',
                            'transform-object-rest-spread',
                            'transform-class-properties',
                            'transform-object-assign',
                        ],
                    }
                },
            },
        ],
    },
    resolve: {
        extensions: ['.js', '.jsx' ,'.css', '.ts'],
        alias: {
            'react-loadable': path.resolve(__dirname, 'app/app.js'),
        },
    },
};

1 个答案:

答案 0 :(得分:2)

由于this answer

在他的webpack.config.js(版本1,2,3)文件中,他拥有

function isExternal(module) {


var context = module.context;

  if (typeof context !== 'string') {
    return false;
  }

  return context.indexOf('node_modules') !== -1;
}

在他的插件数组中

plugins: [
  new CommonsChunkPlugin({
    name: 'vendors',
    minChunks: function(module) {
      return isExternal(module);
    }
  }),
  // Other plugins
]

这应该可以解决我的问题。