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 = { const nextConfig = {
reactStrictMode: true, reactStrictMode: true,
// 他のカスタム設定をここに追加 // 他のカスタム設定をここに追加
output: 'standalone',
}; };
export default nextConfig; export default nextConfig;

View File

@ -0,0 +1,7 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: 'standalone',
};
module.exports = nextConfig;