先看看报错
运行 npm run generate 打包的时候发现报错,但是运行 build 与 dev 正常。生成应用程序时,会跳入虚拟 Linux 机器以获取dist,也就是Windows系统可能会出现这个问题,然后是Linux系统获取路径,与windows有所不同,需要标准化路径处理 错误是在node_modules@nuxt\cli\dist\cli-generate.js中
const files = await globby__default['default']('**/*.*', {
...globbyOptions,
ignore,
cwd: rootDir,
absolute: true
});
把上面的cwd :rootDir改为 cwd : upath . normalize ( rootDir ) 就好了。
const files = await globby__default['default']('**/*.*', {
...globbyOptions,
ignore,
cwd:upath.normalize(rootDir),
absolute: true
});
这样基本上已经解决了,如果不行,可以参考一下官方文档官方文档