npm 运行下一次启动失败,错误为无输入

xzv2uavs  于 12个月前  发布在  其他
关注(0)|答案(1)|浏览(195)

下一个启动命令失败,错误为无条目。
我的下一个配置看起来像这样。
通常,我使用npm run devnpm run build

/** @type {import('next').NextConfig} */
const nextConfig = {
    output: 'export',
    distDir: 'dist',
    images: {
        unoptimized: true
    }
}

module.exports = nextConfig

字符串
此外,运行“start”作为包JSON是“next start”要求文件路径。

[Error: ENOENT: no such file or directory, open 'C:\Users\me\source\repos\mysite\MySite\dist\BUILD_ID'] {
  errno: -4058,
  code: 'ENOENT',
  syscall: 'open',
  path: 'C:\\Users\\me\\source\\repos\\mysite\\MySite\\dist\\BUILD_ID'
}


当运行npm run build时,我在一些文件上看到一些红色,不确定这是否与我的静态块错误帖子有关。


的数据

pdkcd3nj

pdkcd3nj1#

我测试了你的代码.你需要注解掉output: 'export' .如果我构建了与你相同的设置:


的数据
如果你看这dist文件夹,这不是一个正确的构建.看这输出错误在终端.如果你使用这个设置:

const nextConfig = {
  //   output: "export",
  distDir: "dist",
  images: {
    unoptimized: true,
  },
};

字符串
你会得到一个正确的构建文件夹,npm run start可以工作。


相关问题