当前位置: 代码迷 >> 综合 >> WARNING in asset size limit: The following asset(s) exceed the recommended size limit (244 KiB)
  详细解决方案

WARNING in asset size limit: The following asset(s) exceed the recommended size limit (244 KiB)

热度:99   发布时间:2023-12-05 10:36:33.0

打包出现文件大小警告提示

  • 在webpack.base.conf.js配置,添加
module.exports = {
    performance: {
    hints: 'warning',//入口起点的最大体积 整数类型(以字节为单位)maxEntrypointSize: 50000000,//生成文件的最大体积 整数类型(以字节为单位 300k)maxAssetSize: 30000000,//只给出 js 文件的性能提示assetFilter: function(assetFilename) {
    return assetFilename.endsWith('.css') || assetFilename.endsWith('.js');}},......
}
  相关解决方案