Refresh Token 저장 방식 변경

This commit is contained in:
static
2024-12-26 18:54:31 +09:00
parent a42f26bab1
commit b6fbd83d6f
5 changed files with 76 additions and 23 deletions

3
src/lib/stores/auth.ts Normal file
View File

@@ -0,0 +1,3 @@
import { writable } from "svelte/store";
export const accessToken = writable<string | null>(null);