import type { NextConfig } from "next"; const nextConfig: NextConfig = { reactStrictMode: true, output: "export", images: { unoptimized: true, }, distDir: "dist", }; export default nextConfig;