notea/next.config.js
2021-02-15 17:59:00 +08:00

12 lines
160 B
JavaScript

module.exports = {
async redirects() {
return [
{
source: '/page',
destination: '/',
permanent: true,
},
]
},
}