Updated the next config file to prepare for deploy

This commit is contained in:
Caretaker0699 2023-05-15 16:06:09 -07:00
parent 73be01dd40
commit fda58f306b

View File

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