diff --git a/next.config.js b/next.config.js index 2445f58..68ddb05 100644 --- a/next.config.js +++ b/next.config.js @@ -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/*' }, + }; }, };