ERROR Failed to compile with 1 error 21:57:33 error in ./src/App.vue?vue&type=script&lang=js& Module not found: Error: [CaseSensitivePathsPlugin] `D:\Webgis SS\code\client\webgis\node_modules\BMap\build\index.js` does not match the corresponding path on disk `bmap`. ERROR in ./src/App.vue?vue&type=script&lang=js& (./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/App.vue?vue&type=script&lang=js&) 1:0-24 Module not found: Error: [CaseSensitivePathsPlugin] `D:\Webgis SS\code\client\webgis\node_modules\BMap\build\index.js` does not match the corresponding path on disk `bmap`. @ ./src/App.vue?vue&type=script&lang=js& 1:0-191 1:207-210 1:212-400 1:212-400 @ ./src/App.vue 2:0-55 3:0-50 3:0-50 9:2-8 @ ./src/main.js 4:0-28 12:17-20
时间: 2024-03-10 20:49:46 浏览: 208
解决vue安装less报错Failed to compile with 1 errors的问题
这个错误提示是因为你在代码中引入的 BMap 模块的大小写与实际的文件名不一致导致的。你需要在代码中将引入模块的名称改为 `bmap`,例如:
```
import BMap from 'bmap';
```
这样就可以解决大小写不一致的问题了。另外,如果你使用的是 Vue CLI 创建的项目,你还需要在 `vue.config.js` 文件中添加以下配置:
```
module.exports = {
configureWebpack: {
externals: {
'BMap': 'BMap'
}
}
}
```
这样可以避免全局变量被处理导致 BMap 出现问题。
阅读全文