/** @type {import('next').NextConfig} */ const nextConfig = { output: "export", // keep: needed for next export trailingSlash: true, images: { unoptimized: true, // ✅ needed }, swcMinify: true, // explicit SWC minify experimental: { forceSwcTransforms: true // use SWC only } }; module.exports = nextConfig;