From fda58f306b49cc01afd5b7ce7149000586f9805b Mon Sep 17 00:00:00 2001 From: tony Date: Mon, 15 May 2023 16:06:09 -0700 Subject: [PATCH] Updated the next config file to prepare for deploy --- next.config.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/next.config.js b/next.config.js index 2445f58..68ddb05 100644 --- a/next.config.js +++ b/next.config.js @@ -8,8 +8,10 @@ const nextConfig = { }, // This is the list of pages that should be exported when you run the `next export` command. - exportPathMap: { - '/pages/*': './pages/*', + exportPathMap: async function () { + return { + '/pages/*': { page: './pages/*' }, + }; }, };