fix: restore guide structure and add redirects

This commit is contained in:
dyzulk
2026-01-08 19:51:23 +07:00
parent 802401481f
commit 3533d630d8
5 changed files with 37 additions and 17 deletions

View File

@@ -8,4 +8,13 @@ module.exports = withNextra({
images: {
unoptimized: true,
},
async redirects() {
return [
{
source: '/',
destination: '/guide',
permanent: true,
},
]
},
})