Working on updating my website

This commit is contained in:
2024-02-01 19:21:21 +01:00
parent 8df0f6dcda
commit 51cfd5e88e
18 changed files with 1558 additions and 1220 deletions

View File

@@ -0,0 +1,7 @@
export default defineNuxtRouteMiddleware((to) => {
if (to.path === '/bookmarks' || to.path === 'writing') {
return navigateTo('/', {
redirectCode: 301,
})
}
})