/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, output: 'standalone', // /api/* 는 백엔드로 프록시 (Traefik 이 프로덕션에서 처리하지만 dev 호환) async rewrites() { return [ { source: '/api/:path*', destination: process.env.BACKEND_URL ? `${process.env.BACKEND_URL}/api/:path*` : '/api/:path*' }, ] }, } module.exports = nextConfig