Improved authentication by checking the jwt in SvelteKit

This commit is contained in:
Mawoka
2023-01-29 12:26:19 +01:00
parent 9d39a77f35
commit ac28c0f793
6 changed files with 288 additions and 233 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
import { signedIn } from '$lib/stores';
import type { LayoutLoad } from './$types';
import type { LayoutServerLoad } from './$types';
export const load: LayoutLoad = async ({ locals }) => {
export const load: LayoutServerLoad = async ({ locals }) => {
if (locals.email) {
signedIn.set(true);
} else {