7 lines
173 B
TypeScript
7 lines
173 B
TypeScript
import { redirect } from '@sveltejs/kit'
|
|
import type { PageLoad } from './$types'
|
|
|
|
export const load: PageLoad = async () => {
|
|
throw redirect(302, '/database/weapons')
|
|
}
|
|
|