import type { NextConfig } from "next";

onst nextConfig: NextConfig = {
  output: 'export',          // <--- You are already exporting a static site!
  images: { unoptimized: true }
};
export default nextConfig;
