/** @type {import('next').NextConfig} */ const nextConfig = { output: 'export', ...(process.env.NODE_ENV === 'production' ? { distDir: 'dist' } : {}), }; export default nextConfig;