Skip to main content

Next.js

  • next.config.js 的 rewrites,如下範例,代表 about 頁面會顯示 / 頁面內容
module.exports = {
async rewrites() {
return [
{
source: "/about",
destination: "/",
},
];
},
};

參考資料