From 86a7a311ce57b2f14b71a1000718f3dc1199fe78 Mon Sep 17 00:00:00 2001 From: v0 Date: Mon, 13 Oct 2025 02:23:01 +0000 Subject: [PATCH] feat: configure site for Cloudflare Pages static export Add `output: 'export'` to Next.js config and ensure dynamic routes pre-generate pages. #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, },