rsnext/test/integration/rewrites-manual-href-as/next.config.js
JJ Kasper 5bff9eac08
Ensure rewrites work with manual href/as correctly (#25112)
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
2021-05-14 12:50:41 +02:00

10 lines
141 B
JavaScript

module.exports = {
rewrites() {
return [
{
source: '/rewrite-me',
destination: '/another',
},
]
},
}