Vue cli在build时 Warning: entrypoint size limit

Chason
2021-03-17 / 0 评论 / 0 点赞 / 870 阅读 / 609 字
温馨提示:
本文最后更新于 2021-03-17,若内容或图片失效,请留言反馈。部分素材来自网络,若不小心影响到您的利益,请联系我们删除。

warning
entrypoint size limit: The following entrypoint(s) combined asset size exceeds the recommended limit (244 KiB). This can impact web performance.

image.png

错误原因,资源(asset)和入口起点超过指定文件限制,需要在 vue.config.js 文件内做如下配置:

修改vue.config.js文件:

module.exports = {
    publicPath: "./",
    //webpack配置
    configureWebpack: {
        //关闭 webpack 的性能提示
        performance: {
            hints: false
        }
    }
};

参考:https://blog.csdn.net/yun_hou/article/details/87818475

0

评论区