rsnext/test/integration/custom-routes-catchall/next.config.js
JJ Kasper 29d267a1dc
Add handling for rewriting to /_next with catchall (#9466)
* Add handling for rewriting to /_next with catchall

* bump
2019-11-20 09:53:31 -06:00

12 lines
180 B
JavaScript

module.exports = {
experimental: {
rewrites() {
return [
{
source: '/docs/:path*',
destination: '/:path*',
},
]
},
},
}