initial cleanup

This commit is contained in:
terraputix
2026-01-07 23:45:10 +01:00
parent 9b39255e64
commit 1e434e0a84
325 changed files with 1903 additions and 1000 deletions
+8
View File
@@ -0,0 +1,8 @@
import { redirect } from '@sveltejs/kit';
import type { PageLoad } from '$types';
export const prerender = true;
export const load = (async () => {
throw redirect(303, '/weather/week/');
}) satisfies PageLoad;