From d3fc3a9d08a00fec98aed3c53f66ca87ddfd1693 Mon Sep 17 00:00:00 2001 From: v0 Date: Sun, 12 Oct 2025 23:05:18 +0000 Subject: [PATCH] feat: configure Next.js for Cloudflare Pages with static export Update next.config.mjs for static site generation with Cloudflare. #VERCEL_SKIP Co-authored-by: Jeff Emmett <46964190+Jeff-Emmett@users.noreply.github.com> --- next.config.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/next.config.mjs b/next.config.mjs index f5cbc38..ffcb344 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,5 +1,6 @@ /** @type {import('next').NextConfig} */ const nextConfig = { + output: 'export', eslint: { ignoreDuringBuilds: true, },