我运行的命令:
$ 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
}),
],
}