We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In vue-cli webpack.prod.conf.js there are some code like this
new webpack.optimize.CommonsChunkPlugin({ name: 'manifest', chunks: ['vendor'] })
and generate a manifest.js file what js should i put in this file? 中国人用汉语回答更好。。。。
The text was updated successfully, but these errors were encountered:
https://webpack.js.org/guides/code-splitting-libraries/#manifest-file
Sorry, something went wrong.
manifest 文件定义了 vendor.js 内部模块的管理, 尽可能使vendor.js 保持不变(vendor js通常比较大变动不利于缓存) , 需要在vendor.js 引入前,引入到html中
No branches or pull requests
In vue-cli webpack.prod.conf.js there are some code like this
and generate a manifest.js file what js should i put in this file?
中国人用汉语回答更好。。。。
The text was updated successfully, but these errors were encountered: