import type { NextConfig } from "next"; const nextConfig: NextConfig = { reactStrictMode: true, output: "export", images: { unoptimized: true, }, distDir: "dist", compiler: { removeConsole: process.env.NODE_ENV === "production", }, }; export default nextConfig;