vue项目打包后,运行报:webpackjsonp is not defined
手动添加之后才生效
webpack.prod.conf.js
new HtmlWebpackPlugin({
filename: process.env.NODE_ENV === 'testing'
? 'index.html'
: config.build.index,
template: 'index.html',
inject: true,
minify: {
removeComments: true,
collapseWhitespace: true,
removeAttributeQuotes: true
},
chunks:['mainfest', 'vendor', 'app'],
chunksSortMode: 'dependency'
}),
请问需要修改哪的配置?
而不是mainfest