feat: configure Next.js for standalone output

This commit is contained in:
2025-06-04 10:54:58 +09:00
parent 1530342875
commit fb8498fa3d
2 changed files with 8 additions and 0 deletions

View File

@ -2,6 +2,7 @@
const nextConfig = {
reactStrictMode: true,
// 他のカスタム設定をここに追加
output: 'standalone',
};
export default nextConfig;