warning
entrypoint size limit: The following entrypoint(s) combined asset size exceeds the recommended limit (244 KiB). This can impact web performance.
错误原因,资源(asset)和入口起点超过指定文件限制,需要在 vue.config.js 文件内做如下配置:
修改vue.config.js文件:
module.exports = {
publicPath: "./",
//webpack配置
configureWebpack: {
//关闭 webpack 的性能提示
performance: {
hints: false
}
}
};
评论区