Next.js
The React Framework
How do you handle redirects in Next.js?
Redirects can be set up in next.config.js
using the redirects
property.
module.exports = { async redirects() { return [ { source: '/old-path', destination: '/new-path', permanent: true } ]; } };
This creates a permanent redirect from /old-path
to /new-path
.
/ 18