webpack build 在windows和Linux下build需注意路径的大小写
如:route/index.js实际路径:/page/WanHG/index.vue在index.js中写法const ImageList = () => import('/page/Admin/imgaeList.vue')const WanHgIndex = () => import('/page/WanhG/index.vue'在Windows内进行build不会
·
如:route/index.js
实际路径:/page/WanHG/index.vue
在index.js中写法
const ImageList = () => import('/page/Admin/imgaeList.vue')
const WanHgIndex = () => import('/page/WanhG/index.vue'
在Windows内进行build不会报错,因为Windows忽略路径的大小写。但是Linux下会报错,提示无法找到文件。
因此在配置路由时,一定要保证index.js中与路径写法一模一样
更多推荐
已为社区贡献4条内容
所有评论(0)