Merge pull request #5 from imnyang/nextjs

chore(next): set output to 'standalone' in next.config.ts
This commit is contained in:
암냥 2025-10-23 20:38:01 +09:00 committed by GitHub
commit 0520e0a6e8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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