From d8f9bb0e4a0d9c22fe8aa357babd44c2a8635105 Mon Sep 17 00:00:00 2001 From: Iveta Date: Tue, 9 Jan 2024 17:28:52 -0500 Subject: [PATCH] Static build --- next.config.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/next.config.js b/next.config.js index 767719fc..32f40750 100644 --- a/next.config.js +++ b/next.config.js @@ -1,4 +1,7 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {} +const nextConfig = { + output: "export", + distDir: "build", +}; -module.exports = nextConfig +module.exports = nextConfig;