chore(next): set output to 'standalone' in next.config.ts #5

Merged
imnyang merged 1 commit from nextjs into main 2025-10-23 20:38:01 +09:00

View file

@ -7,6 +7,7 @@ const nextConfig: NextConfig = {
turbopack: { turbopack: {
root: path.join(__dirname, '.'), root: path.join(__dirname, '.'),
}, },
output: 'standalone',
}; };
export default nextConfig; export default nextConfig;