import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: "export", distDir: process.env.DIST || "./out", images: { unoptimized: true, }, }; export default nextConfig;