iview-admin 编译报错 entrypoint size limit

使用iview-admin 执行npm run build 指令时报错

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

iview-admin 编译报错 entrypoint size limit

解决办法:
在vue.config.js文件中添加该配置

config.performance .set('hints', false);

iview-admin 编译报错 entrypoint size limit