mirror of
https://github.com/QingWei-Li/notea.git
synced 2024-11-29 12:53:00 +03:00
12 lines
160 B
JavaScript
12 lines
160 B
JavaScript
module.exports = {
|
|
async redirects() {
|
|
return [
|
|
{
|
|
source: '/page',
|
|
destination: '/',
|
|
permanent: true,
|
|
},
|
|
]
|
|
},
|
|
}
|