rsnext/test/integration/custom-routes-catchall/next.config.js

13 lines
180 B
JavaScript
Raw Normal View History

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