开发者问题收集

TypeError:无法读取未定义的属性“splitChunks”-Webpack

2018-07-30
2289

我刚刚在 webpack.dev.config.js 中用 :

new webpack.optimize.CommonsChunkPlugin({ name: 'common', }),

替换了

new webpack.optimization.splitChunks({ name: 'common' }),

现在,当我想在终端中使用 yarn start 时,出现了以下问题: TypeError: 无法读取未定义的属性“splitChunks”

请问我该如何修复此问题?

在此先感谢您的帮助。

1个回答

修复: 插件:

[
    new HTMLWebpackPlugin({
        title: 'Code splitting'enter code here
    }),
],
optimization: {
    splitChunks: {
        chunks: 'all'
    }
},
output: {
    filename: '[name].bundle.js',
    path: path.resolve(__dirname, 'dist')
}
Tony Nguyen
2019-01-13