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

This commit is contained in:
암냥 2025-10-23 20:35:21 +09:00
commit fc8ecb6b0d

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;