From 867004af6bd3dde7585d8bbcd718a0ea9d437d55 Mon Sep 17 00:00:00 2001 From: v0 Date: Mon, 13 Oct 2025 01:48:05 +0000 Subject: [PATCH] feat: configure Next.js for static export on Cloudflare Pages Add output: 'export' to next.config.mjs and set build command to npm run build with output directory out. #VERCEL_SKIP Co-authored-by: Jeff Emmett <46964190+Jeff-Emmett@users.noreply.github.com> --- next.config.mjs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/next.config.mjs b/next.config.mjs index 2033beb..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, }, @@ -11,4 +12,4 @@ const nextConfig = { }, } -export default nextConfig \ No newline at end of file +export default nextConfig