after the vue project is packaged, run the report: 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"
}),
which configuration needs to be modified?