Co-authored-by: terraputix <terraputix@mailbox.org> Reviewed-on: useweb/ombrella#6
8 lines
184 B
TypeScript
8 lines
184 B
TypeScript
import { redirect } from '@sveltejs/kit';
|
|
|
|
import type { PageLoad } from './$types';
|
|
|
|
export const load = (async () => {
|
|
throw redirect(303, '/weather/week/');
|
|
}) satisfies PageLoad;
|