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