Modified the path map to not have the wildcard
included.
This commit is contained in:
parent
d29c9a3438
commit
97bcc8e8da
@ -11,7 +11,12 @@ const nextConfig = {
|
|||||||
// This is the list of pages that should be exported when you run the `next export` command.
|
// This is the list of pages that should be exported when you run the `next export` command.
|
||||||
exportPathMap: async function () {
|
exportPathMap: async function () {
|
||||||
return {
|
return {
|
||||||
"/pages/*": { page: "./pages/*" },
|
'/': { page: '/' },
|
||||||
|
'/about': { page: '/about' },
|
||||||
|
'/contactus': { page: '/contactus' },
|
||||||
|
'/getinvolved': { page: '/getinvolved' },
|
||||||
|
'/hireus': { page: '/hireus' },
|
||||||
|
'/projects': { page: '/projects' },
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user