1
0
Fork 0
mirror of https://github.com/elk-zone/elk.git synced 2025-03-13 03:30:17 +03:00
elk/middleware/2.single-instance.global.ts

11 lines
249 B
TypeScript
Raw Permalink Normal View History

export default defineNuxtRouteMiddleware(async (to) => {
2024-02-24 17:46:14 +01:00
if (import.meta.server || !useRuntimeConfig().public.singleInstance)
return
if (to.params.server) {
const newTo = { ...to }
delete newTo.params.server
return newTo
}
})