From 39829b79d33083904aeac49c75c8ee525bf73548 Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Sat, 5 Sep 2026 14:14:22 -0700 Subject: [PATCH] chore: enable static export for Cloudflare Pages deployment --- next.config.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/next.config.ts b/next.config.ts index e9ffa30..99ef169 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,11 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - /* config options here */ + output: 'export', + images: { + unoptimized: true, + }, }; export default nextConfig; +