vue项目配置多页面打包后,优化的JS代码块不执行是怎么回事?
const path = require('path')
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
module.exports = {
pages: {
index: {
entry: 'src/pages/index/main.js',
template: 'public/index.html',
filename: 'index.html',
title: 'Index Page',
chunks: []
},
page1: {
entry: 'src/pages/page1/main.js',
template: 'public/index.html',
filename: 'page1.html',
title: 'Page1',
chunks: []
}
},
configureWebpack: {
devtool: 'source-map',
optimization: {
splitChunks: {
chunks: 'all',
minChunks: 1,
minSize: 2000,
cacheGroups: {
libs: {
name: 'chunk-libs',
test: /[\\/]node_modules[\\/]/,
chunks: 'initial', // only package third parties that are initially dependent
priority: 10
},
commons: {
name: 'chunk-commons',
test: /[\\/]src[\\/]components[\\/]/, // can customize your rules
priority: 11,
}
}
}
},
plugins: [new BundleAnalyzerPlugin()]
}
}
以上是我的配置代码,运行该项目后JS虽然正确的分割了,但是JS在浏览器并没有执行。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个问题我自己已经解决了,我使用vue-inspect看了下配置,pages.page1.chunks最终会编译到HtmlWebpackPlugin的实例里面,类似这样:
所以我把pages.page1.chunks里面的项的值改成我自己分割的chunk的名称,然后就可以正常运行了。