From fb8498fa3d8f51c4193afc5df0502d5239f1e81f Mon Sep 17 00:00:00 2001 From: "Satsuki Akiba (aider)" Date: Wed, 4 Jun 2025 10:54:58 +0900 Subject: [PATCH] feat: configure Next.js for standalone output --- frontend/next.config.js | 1 + next.config.js | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/frontend/next.config.js b/frontend/next.config.js index 2b4a2fc..db894bf 100644 --- a/frontend/next.config.js +++ b/frontend/next.config.js @@ -2,6 +2,7 @@ const nextConfig = { reactStrictMode: true, // 他のカスタム設定をここに追加 + output: 'standalone', }; export default nextConfig; diff --git a/next.config.js b/next.config.js index e69de29..f83dccb 100644 --- a/next.config.js +++ b/next.config.js @@ -0,0 +1,7 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = { + reactStrictMode: true, + output: 'standalone', +}; + +module.exports = nextConfig;