📜  nextjs 覆盖页面路由 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:14.535000             🧑  作者: Mango

代码示例1
module.exports = {
  async rewrites() {
    return [
      {
        source: '/about', // this will the new route
        destination: '/', // this is the old route
      },
    ]
  },
}