From 4d08b7e8b0695c1fb7ad07216357e89a4bf17382 Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Mon, 22 Jul 2024 13:41:51 +0200 Subject: [PATCH] feat: :building_construction: Export as static site --- next.config.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/next.config.mjs b/next.config.mjs index 637edb1..e7acbf1 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -16,6 +16,7 @@ const withMDX = nextMDX({ /** @type {import('next').NextConfig} */ const nextConfig = { pageExtensions: ["js", "jsx", "ts", "tsx", "mdx"], + output: "export" }; export default withSearch(withMDX(nextConfig));