NextJs mengesampingkan rute halaman

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