From 97bcc8e8dac9a525bc229f3a42c9654ec08cb7d2 Mon Sep 17 00:00:00 2001 From: tony Date: Mon, 15 May 2023 16:31:08 -0700 Subject: [PATCH] Modified the path map to not have the wildcard included. --- next.config.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/next.config.js b/next.config.js index e348845..6ba482e 100644 --- a/next.config.js +++ b/next.config.js @@ -11,7 +11,12 @@ const nextConfig = { // This is the list of pages that should be exported when you run the `next export` command. exportPathMap: async function () { return { - "/pages/*": { page: "./pages/*" }, + '/': { page: '/' }, + '/about': { page: '/about' }, + '/contactus': { page: '/contactus' }, + '/getinvolved': { page: '/getinvolved' }, + '/hireus': { page: '/hireus' }, + '/projects': { page: '/projects' }, };