npm run build: WARNING in asset size limit: The following asset(s) exceed the recommended size limit

内容分享2小时前发布
0 0 0

webpack打包提示文件体积过大导致

module.exports = {
    //webpack配置
    configureWebpack: {
        //关闭 webpack 的性能提示
        performance: {
            hints:false
        }
 
        //或者
 
        //警告 webpack 的性能提示
        performance: {
            hints: warning ,
            //入口起点的最大体积
            maxEntrypointSize: 50000000,
            //生成文件的最大体积
            maxAssetSize: 30000000,
            //只给出 js 文件的性能提示
            assetFilter: function(assetFilename) {
                return assetFilename.endsWith( .js );
            }
        }
    }
}

© 版权声明

相关文章

暂无评论

none
暂无评论...