2022-11-10 00:12:34 +05:30
|
|
|
import type { PageServerLoad } from "./$types";
|
2022-11-29 21:12:15 +05:30
|
|
|
import { compile } from "mdsvex";
|
2022-11-10 00:12:34 +05:30
|
|
|
|
|
|
|
export const load: PageServerLoad = async () => {
|
|
|
|
return {
|
2022-12-06 19:09:50 +05:30
|
|
|
state: await fetch(import.meta.env.VITE_API_URL + "/api/v1/state/announcements").then((res) => res.json()),
|
|
|
|
announcements: await fetch(import.meta.env.VITE_API_URL + "/api/v1/announcements").then((res) => res.json()),
|
|
|
|
content: await fetch(import.meta.env.VITE_API_URL + "/api/v1/announcements").then((res) => res.json()).then((res) => compile(res.title)).then((res) => res.code)
|
2022-11-10 00:12:34 +05:30
|
|
|
}
|
2022-11-29 21:12:15 +05:30
|
|
|
}
|
|
|
|
|