Spaces:
Build error
Build error
File size: 449 Bytes
64d3841 767afa7 64d3841 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import { dev } from "$app/environment";
import { base } from "$app/paths";
import { COOKIE_NAME } from "$env/static/private";
import { redirect } from "@sveltejs/kit";
export const actions = {
default: async function ({ cookies }) {
cookies.delete(COOKIE_NAME, {
path: "/",
// So that it works inside the space's iframe
sameSite: dev ? "lax" : "none",
secure: !dev,
httpOnly: true,
});
throw redirect(303, `${base}/`);
},
};
|