sinProject-Inc/sinpro-dev

View on GitHub
src/routes/docs/+page.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { base } from '$app/paths'
import { redirect } from '@sveltejs/kit'
import type { PageLoad } from './$types'

export const load: PageLoad = async () => {
    throw redirect(307, `${base}/docs/portfolio`)
}