+page.server.js 101 B

12345
  1. import { redirect } from '@sveltejs/kit';
  2. export function load() {
  3. throw redirect(307, '/home');
  4. }