Files
SpotMicroESP32-Leika/app/src/routes/system/+page.ts
T
2025-10-20 20:34:33 +02:00

9 lines
209 B
TypeScript

import type { PageLoad } from './$types'
import { goto } from '$app/navigation'
import { resolve } from '$app/paths'
export const load = (async () => {
goto(resolve('/'))
return
}) satisfies PageLoad