js
Could not load /src/layout/index.vue (imported by src/router/index.ts): ENOENT: no such file or directory, open '/src/layout/index.vue'
在Windows和mac电脑上本地打包都可以,但是放到Jenkins上,就会找不到文件。
经过排查Linux是严格区分大小写的,win 和 mac都不区分,所以在提交代码时修改
用记事本在项目目录下的 .git 文件下 config 文件
js
ignorecase = false // 修改成false
最好在项目初始化时就设置