import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: "export", // <=== enables static exports reactStrictMode: true, }; export default nextConfig;