1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-22 06:06:48 +01:00
elk/middleware/link.global.ts
2022-12-21 13:38:39 +00:00

7 lines
191 B
TypeScript

const reloadRoutes = new Set(['/invite'])
export default defineNuxtRouteMiddleware((to) => {
if (process.client && reloadRoutes.has(to.fullPath))
window.location.pathname = to.path
})