From 63ca0bf11e0ab9940b9030093d80e2fd67f99ee1 Mon Sep 17 00:00:00 2001 From: Omar Date: Thu, 12 Dec 2024 08:30:40 +0200 Subject: [PATCH] static site --- next.config.mjs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/next.config.mjs b/next.config.mjs index 4678774..4350313 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,4 +1,6 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {}; +const nextConfig = { + output: "export", +}; export default nextConfig;