我只是将 webpack.dev.config.js 替换为:
new webpack.optimize.CommonsChunkPlugin({ name: 'common', }),
通过
new webpack.optimization.splitChunks({ name: 'common' }),
。
现在,当我想在终端中使用yarn start
时,出现以下问题:
TypeError: Cannot read property 'splitChunks' of undefined
请问该如何解决?
预先感谢您的帮助。
答案 0 :(得分:0)
修复: 插件:
[
new HTMLWebpackPlugin({
title: 'Code splitting'enter code here
}),
],
optimization: {
splitChunks: {
chunks: 'all'
}
},
output: {
filename: '[name].bundle.js',
path: path.resolve(__dirname, 'dist')
}