mirror of
https://github.com/BradNut/personal-website-sveltekit
synced 2025-09-08 23:20:18 +00:00
6 lines
117 B
TypeScript
6 lines
117 B
TypeScript
|
|
import { redirect } from '@sveltejs/kit';
|
||
|
|
|
||
|
|
export const load = async () => {
|
||
|
|
throw redirect(302, '/articles/1');
|
||
|
|
};
|