import { redirect } from "@sveltejs/kit"; const actions = { default: async ({ locals }) => { locals.pb.authStore.clear(); throw redirect(303, "/login"); } }; export { actions };