vue.config.js :配置webpack(文件传输大小受限)The following asset(s) exceed the recommended size limit (244 KiB)
asset size limit: The following asset(s) exceed the recommended size limit (244 KiB).This can impact web performance.资产大小限制:以下资产超过了建议的大小限制(244 KiB)。这可能会影响网络性能。vue.config.js是vue-cli3之后新增的一个功能,再...
asset size limit: The following asset(s) exceed the recommended size limit (244 KiB).
This can impact web performance.
资产大小限制:以下资产超过了建议的大小限制(244 KiB)。
这可能会影响网络性能。
vue.config.js是vue-cli3之后新增的一个功能,再这个版本里面如果要配置webpack相关的属性,就需要自己在项目根目录新建vue.config.js这个文件,然后在该文件里面去写入你需要的配置等等。
vue.config.js的具体配置参数可以参照vue-cli文档地址:vue.config.js配置
错误原因,资源(asset)和入口起点超过指定文件限制,需要在 vue.config.js 文件内做如下配置:
module.exports = {
//webpack配置
configureWebpack: {
//关闭 webpack 的性能提示
performance: {
hints:false
}
//或者
//警告 webpack 的性能提示
performance: {
hints:'warning',
//入口起点的最大体积
maxEntrypointSize: 50000000,
//生成文件的最大体积
maxAssetSize: 30000000,
//只给出 js 文件的性能提示
assetFilter: function(assetFilename) {
return assetFilename.endsWith('.js');
}
}
}
}
引用链接:https://blog.csdn.net/yun_hou/article/details/87818475
https://blog.csdn.net/playboyanta123/article/details/103528594
更多推荐
所有评论(0)