3

私が実行するコマンド:

$ webpack --config webpack.config.js -p --progress

これが私が得た結果です。とはchunksどういう意味ですか? なぜ彼らは時々変わるのですか?私がそれを正しく理解していれば、チャンクが多いほど良いです。

しかし、同じ量のファイルを見ることができません。すべてのエントリ ポイントに 0-1-2 のチャンクがある場合、チャンクのファイルはどこにありますか? エントリーポイントしかない

たくさんの ここに画像の説明を入力

独身 ここに画像の説明を入力

私のWP設定:

module.exports = {
    context: path.resolve(__dirname, '..'),
    entry: {
        index: 'index.wp',
        home: 'home.wp',
        vendors: [
            'react',
            'react-dom',
            'querystring',
            'react-router',
        ]
    },
    output: {
        path: path.resolve(__dirname, '_distro_'),
        publicPath: '/',
        filename: '[name].[chunkhash:5].js',
        pathinfo: true,
        chunkFilename: 'chunk-[name].[chunkhash].js'
    },
    plugins: [
        new webpack.optimize.CommonsChunkPlugin({
            names: ["vendors", 'index', 'home'],
            minChunks: 1 // << I play with this value and # of chunks change
        }),
    ],
}

WP GitHub https://github.com/webpack/webpack/issues/6387

4

1 に答える 1