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;