vue项目打包 报warning: asset size limit: The following asset(s) exceed the recommended size limit (244 KiB). This can impact web performance.
这个警告的原因是因为vue的引入的js文件太大
解决方案:可以放开VUE打包大小限制
在vue项目中的vue.config.js的configureWebpack添加如下代码文章来源:https://www.toymoban.com/news/detail-776268.html
configureWebpack: {
// provide the app's title in webpack's name field, so that
// it can be accessed in index.html to inject the correct title.
name: name,
resolve: {
alias: {
'@': resolve('src'),
}
},
performance: {
hints: 'warning',
maxEntrypointSize: 40000000,
// 生成文件的最大体积
maxAssetSize: 20000000,
assetFilter: function(assetFilename) {
return assetFilename.endsWith('.js')
}
},
},
最后再重新打包一下就好了文章来源地址https://www.toymoban.com/news/detail-776268.html
到了这里,关于WARNING in asset size limit: The following asset(s) exceed the recommended size limit (244 KiB).的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!