From b09f6049fc5735ca7f63dd69c51590ed265626f5 Mon Sep 17 00:00:00 2001 From: Angela Gilhotra Date: Mon, 7 Oct 2024 14:05:40 -0700 Subject: [PATCH] enable static page generation --- web-app/next.config.mjs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/web-app/next.config.mjs b/web-app/next.config.mjs index 4678774..0084428 100644 --- a/web-app/next.config.mjs +++ b/web-app/next.config.mjs @@ -1,4 +1,7 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {}; +const nextConfig = { + output: "export", + reactStrictMode: true +}; export default nextConfig;