/** @type {import('next').NextConfig} */ const nextConfig = { // Remove output: 'export' to allow dynamic API routes distDir: 'dist', eslint: { ignoreDuringBuilds: true, }, images: { unoptimized: true } // Removed experimental.appDir as it's now enabled by default }; module.exports = nextConfig;