10 lines
216 B
TypeScript
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;
|