Files
SpotMicroESP32-Leika/app/src/routes/connections/+page.ts
T
2024-05-03 16:23:03 +02:00

8 lines
162 B
TypeScript

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