import type { NextConfig } from "next"; const nextConfig: NextConfig = { // use a static export to generate an `out` folder when running `next build && next export` // this aligns with the request to "generate out folder" during build time output: 'export', // note: customize other options as needed }; export default nextConfig;