Modified the path map to not have the wildcard

included.
This commit is contained in:
Caretaker0699 2023-05-15 16:31:08 -07:00
parent d29c9a3438
commit 97bcc8e8da

View File

@ -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' },
};