From 6b0f7008a2ead14a26aa4b3d9cb30d88e3c413c8 Mon Sep 17 00:00:00 2001 From: charlesLoder Date: Tue, 21 Jan 2025 10:17:51 -0500 Subject: [PATCH] Update next config for static output --- next.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next.config.ts b/next.config.ts index e9ffa30..676fa21 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,7 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - /* config options here */ + output: "export" }; export default nextConfig;