rsnext/test/integration/required-server-files-ssr-404/next.config.js

11 lines
145 B
JavaScript
Raw Normal View History

module.exports = {
rewrites() {
return [
{
source: '/some-catch-all/:path*',
destination: '/',
},
]
},
}