An exportPathMap
path was improperly matched to a dynamically routed page.
This would result in the page missing its URL parameters.
Change your exportPathMap
function in next.config.js
to have a path that matches the dynamically routed page.
module.exports = {
exportPathMap: function () {
return {
'/': { page: '/' },
// '/blog/nextjs': { page: '/blog/[post]/comment/[id]' }, // wrong
'/blog/nextjs/comment/1': { page: '/blog/[post]/comment/[id]' }, // correct
}
},
}
- exportPathMap documentation