错误原因主要是windows系统和Linux获取路径的方式不同
我们可以在node_modules@nuxt\cli\dist\cli-generate.js中修改一些配置,如下图所示
const files = await globby__default['default']('**/*.*', {
...globbyOptions,
ignore,
cwd: upath . normalize ( rootDir ), // 原来是cwd:rootDir
absolute: true
});
把cwd那一行修改好了就行啦~