This repository has been archived on 2026-08-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
drizzli/src/routes/weather/+page.ts
T
2026-02-15 15:42:20 +01:00

10 lines
216 B
TypeScript

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;