index.ts 445 B

123456
  1. import { writable, type Writable } from "svelte/store";
  2. // place files you want to import through the `$lib` alias in this folder.
  3. export const api_host = "http://localhost:3000";
  4. //export let authToken: string = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjY3OTIxYTcyMTNiM2NkYjc5NGZmNzQ2MiIsImlhdCI6MTczNzcyOTYwMiwiZXhwIjoxNzM3NzUxMjAyfQ.-TlU0izsSJnZYE79yG01fcRgzgBirZBJBsiQf2alwZ4";
  5. export let authToken: Writable<string> = writable("");