Published
- 1 min read
sveltekit redirect
The solution for this is noted below
sveltekit redirect
Solution
// in +page.js
import { redirect } from '@sveltejs/kit'
// Redirect this route to /hello
export function load() {
throw redirect(302, '/hello')
}
Try other methods by searching on the site. That is if this doesn’t work