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

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

  • 在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');
        }
    },
    ......
}

你可能感兴趣的:(vue.js)