How to tackle redirect to an external url in NextJS?
The latest version of Next.js has this built in using the next.config.js script (see https://nextjs.org/docs/api-reference/next.config.js/redirects). No need for additional plugins. To test, copy the NextJs sample app: npx create-next-app nextjs-blog –use-npm –example “https://github.com/vercel/next-learn-starter/tree/master/learn-starter” Add a next.config.js file to the root folder with the following code: // this simply tests the redirecting of the root path … Read more