// in +page.js
import { redirect } from '@sveltejs/kit';
// Redirect this route to /hello
export function load() {
throw redirect(302, '/hello');
}
export async function get() {
// Do some magic here... ✨
return {
headers: { Location: '/success' },
status: 302
}
}