如何在next.config.js的exportPathMap中添加动态路径以链接到特定页面?动态网址将在运行时创建。
场景-
网址:https://www.example.com/customers/32132-cid-1312
在动态域之后的上述URL部分中,这是在运行时发生的,因此我们无法在构建时为此生成页面。
我们如何将所有这些动态URL链接到特定页面?
我的next.config.js
exportPathMap: async function(defaultPathMap) {
return {
"/404.html": {page: '/_error'},
"/": { page: "/" },
"/platform": { page: "/platform" },
"/customers/:id": { page: '/customers' },
};
}
对于客户来说,id是动态的,它是在运行时生成的。我想在运行时将所有这些链接到客户页面。在这种情况下,无法在运行时生成这些页面集。
请帮助!