vue项目运行出现报错:Multiple assets emit different content to the same filename index.html

vue项目运行出现报错:Multiple assets emit different content to the same filename index.html_第1张图片

原因:

在新版本vue-cli(5以上,我的目前是5.0.4)中,不允许有括号等符号

解决方案:

1、将文件夹中的括号等去除
2、降级,降级至4.5

先卸载新版本
npm uninstall @vue/cli
然后安装旧版本
npm install @vue/[email protected]

你可能感兴趣的:(vue,vue)