missing working directory

This commit is contained in:
Jun-te Kim 2026-01-06 22:28:39 +00:00
parent 124479ecd7
commit 322025d259

View file

@ -1,7 +1,10 @@
import type { NextConfig } from "next"; import type { NextConfig } from "next";
const nextConfig: NextConfig = { const nextConfig = {
output: "standalone", output: 'standalone',
experimental: {
turbo: false, // disables Turbopack in prod builds
},
}; };
export default nextConfig; export default nextConfig;