私が実行するコマンド:
$ 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
}),
],
}