notea/next.config.js

12 lines
160 B
JavaScript
Raw Normal View History

2021-02-15 12:59:00 +03:00
module.exports = {
async redirects() {
return [
{
source: '/page',
destination: '/',
permanent: true,
},
]
},
}