routes: redirect root to /teams/explore
This commit is contained in:
parent
d412e760ab
commit
07f57d20fb
1 changed files with 6 additions and 0 deletions
6
src/routes/(app)/+page.server.ts
Normal file
6
src/routes/(app)/+page.server.ts
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
import { redirect } from '@sveltejs/kit'
|
||||
import type { PageServerLoad } from './$types'
|
||||
|
||||
export const load: PageServerLoad = async () => {
|
||||
redirect(302, '/teams/explore')
|
||||
}
|
||||
Loading…
Reference in a new issue