在 webpack 中为 chunkFileName 使用序号

use sequential number for chunkFileName in webpack

我想在 webpack v5 的生产模式下为 chunkFileName 使用序号,例如 1.js, 2.js,...。我为命名设置了 [index].js,但是 webpack 给了我以下错误:

Error: Conflict: Multiple chunks emit assets to the same filename [index].js (chunks 179 and 216)

这是我对 webpack 的配置:

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: {
                        babelrc: false,
                        presets: [
                            ['es2015', { modules: false }],
                            'react',
                        ],
                        plugins: [
                            'syntax-dynamic-import',
                            'transform-object-rest-spread',
                            'transform-class-properties',
                            'transform-object-assign',
                        ],
                    }
                },
            },
            {
                // Preprocess our own .css files
                // This is the place to add your own loaders (e.g. sass/less etc.)
                // for a list of loaders, see https://webpack.js.org/loaders/#styling
                test: /\.css$/,
                exclude: /node_modules/,
                use: [
                    'style-loader',
                    'css-loader',
                ]
            }
        ],
    },
    optimization: {
        minimize: false,
        splitChunks: {
            cacheGroups: {
                defaultVendors: {
                    test: /[\/]node_modules[\/]/,
                    name: "vendors",
                    chunks: "all"
                }
            },

        }
    },
    plugins: [
        new CompressionPlugin({
            algorithm: 'gzip',
            test: /\.(js)$|\.(css)$|\.(html)$|\.eot?.+$|\.ttf?.+$|\.woff?.+$|\.svg?.+$/,
            //threshold: 10240,
            //minRatio: 0
        })
    ],
    resolve: {
        extensions: ['.js', '.jsx', '.css', '.ts'],
        alias: {
            'react-loadable': path.resolve(__dirname, 'app/app.js'),
        },
    },
};

if (process.env.NODE_ENV === 'production') {
    const TerserPlugin = require("terser-webpack-plugin");
    config.devtool = false;
    config.output.chunkFilename = '[index].js';
    config.optimization = {
        minimize: true,
        minimizer: [new TerserPlugin()],
        splitChunks: {
            cacheGroups: {
                vendors: {
                    test: /[\/]node_modules[\/]/,
                    name: "vendors",
                    chunks: "all",
                }
            },

        }
    },
        config.plugins = [
            new webpack.optimize.AggressiveMergingPlugin(),
            new webpack.DefinePlugin({
                'process.env': { NODE_ENV: JSON.stringify('production') }
            }),
            new CompressionPlugin({
                algorithm: 'gzip',
                test: /\.(js)$|\.(css)$|\.(html)$|\.eot?.+$|\.ttf?.+$|\.woff?.+$|\.svg?.+$/,
                //threshold: 10240,
                //minRatio: 0
            })
        ];
}
module.exports = config;

有谁知道问题出在哪里?提前致谢!

我找到答案了! webpack's optimization 部分有一个配置可以设置,它给我们一个序列号 chunkFileName 和它的 chunkIds 应该设置为 natural。所以:

 config.optimization = {
        chunkIds: "natural",
        minimize: true,
        minimizer: [new TerserPlugin()],
        splitChunks: {
            cacheGroups: {
                vendors: {
                    test: /[\/]node_modules[\/]/,
                    name: "vendors",
                    chunks: "all"
                }
            },
        }
    }