From a4d7619b247a4098f27a4e67ca760d8a5367405f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Kysel=C3=A1k?= Date: Sat, 13 Jan 2024 11:58:41 +0000 Subject: [PATCH] feat: turning on static HTML export --- next.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/next.config.js b/next.config.js index 767719f..64f670c 100644 --- a/next.config.js +++ b/next.config.js @@ -1,4 +1,4 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {} +const nextConfig = { output: 'export' }; -module.exports = nextConfig +module.exports = nextConfig;