下一个启动命令失败,错误为无条目。
我的下一个配置看起来像这样。
通常,我使用npm run dev
和npm 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
时,我在一些文件上看到一些红色,不确定这是否与我的静态块错误帖子有关。
的数据
1条答案
按热度按时间pdkcd3nj1#
我测试了你的代码.你需要注解掉
output: 'export'
.如果我构建了与你相同的设置:的数据
如果你看这dist文件夹,这不是一个正确的构建.看这输出错误在终端.如果你使用这个设置:
字符串
你会得到一个正确的构建文件夹,
npm run start
可以工作。的