Next.js Discord

Discord Forum

Rewrites from next.config.js not working on preview environments

Unanswered
Nile perch posted this in #help-forum
Open in Discord
Nile perchOP
A simple configuration like the one below doesn't work on preview environments of Vercel and instead it does a redirect. Anyone has any idea maybe?

```
async rewrites() {
return {
beforeFiles: [
// Redirect the index page to the landing app
{
source: '/landing',
destination: 'https://CUSTOM_URL/landing', // URL is valid
}
]
}
}

0 Replies