ERROR Failed to compile with 1 error 16:14:59 Failed to resolve loader: vue-esri-loader You may need to install it. ERROR in ./src/main.js 4:0-44 Module not found: Error: Can't resolve 'vue-esri-loader' in 'F:\vueTest\mydemo0602\src' webpack compiled with 1 error
时间: 2024-02-10 17:08:14 浏览: 73
面向云原生生态的定义及最佳实践提供静态类型配置语言及工具支持在业务镜像外提供 Compile to Cloud 的技术栈
看起来你的项目在编译过程中出现了错误,提示缺少 vue-esri-loader 这个 loader。可能需要你手动安装这个 loader。你可以尝试运行以下命令来安装它:
```
npm install vue-esri-loader --save-dev
```
安装完成后,再次编译你的项目即可。
阅读全文