Answers for "nextjs override page route"

0

nextjs override page route

module.exports = {
  async rewrites() {
    return [
      {
        source: '/about', // this will the new route
        destination: '/', // this is the old route
      },
    ]
  },
}
Posted by: Guest on December-30-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language