preload data for all

This commit is contained in:
2023-02-18 18:42:23 +02:00
parent 727bfdaae7
commit 4074e775b1
9 changed files with 98 additions and 63 deletions

View File

@@ -1,3 +1,11 @@
import { writable, type Writable } from "svelte/store";
export const announcements: Writable<{}> = writable({});
export const pubnixUsers: Writable<{}> = writable({});
export const blogPosts: Writable<{}> = writable({});
export const blogTags: Writable<{}> = writable({});
export const blogAuthors: Writable<{}> = writable({});