戈恩目录的 next.config.js 里没有配置打包路径
module.exports = {
distDir: 'build',
}
如:
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
unoptimized: true,
},
trailingSlash: true,
distDir: 'build',
}
module.exports = nextConfig