Skip to content

Commit

Permalink
Fix rewrite example for fallback site (#25508)
Browse files Browse the repository at this point in the history
Rewrite document fix based on the following article.

https://nextjs.org/docs/migrating/incremental-adoption

## Documentation / Examples

- [ x] Make sure the linting passes
  • Loading branch information
hussainanjar committed May 27, 2021
1 parent 327488d commit 9752cb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/api-reference/next.config.js/rewrites.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ module.exports = {
// and dynamic routes are checked
{
source: '/:path*',
destination: 'https://my-old-site.com',
destination: `https://my-old-site.com/:path*`,
},
],
}
Expand Down

0 comments on commit 9752cb8

Please sign in to comment.