From 81c36842e5141e4bf24e6c318b96e00f0c8718e1 Mon Sep 17 00:00:00 2001 From: Kim Robinson Date: Thu, 24 Oct 2024 07:21:04 -0700 Subject: [PATCH] update config for deploy process --- next.config.mjs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/next.config.mjs b/next.config.mjs index 4678774..58108e3 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,4 +1,9 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {}; +const nextConfig = { + basePath: "/kimmykokonut.github.io", + output: "export", //enables static exports + reactStrictMode: true, +}; +// module.exports = nextConfig; export default nextConfig;