coyotte508's picture
coyotte508 HF staff
✨ Add account page
36f8d04
raw
history blame
261 Bytes
import { redirect } from '@sveltejs/kit';
import type { ServerLoad } from './$types';
export const load: ServerLoad = (event) => {
if (!event.locals.user) {
throw redirect(303, `/connexion?suivant=${encodeURIComponent(event.url.href)}`);
}
return {};
};