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