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