Something went wrong. Try again.
[READ-ONLY] Mirror of https://github.com/openstatusHQ/openstatus. ๐ซ Status page with uptime monitoring & API monitoring as code ๐ซ openstatus.dev
bun drizzle-orm monitoring monitoring-as-code nextjs observability on-call open-source shadcn-ui status-page statuspage synthetic-monitoring tinybird turso uptime uptime-checker uptime-monitor
Something went wrong. Try again.
TypeScript
123456789101112131415161718192021222324252627282930313233export const SIZE = { width: 1200, height: 630,};
export const DEFAULT_URL = process.env.VERCEL_URL ? `https://${process.env.VERCEL_URL}` : "http://localhost:3000";
export const interMedium = fetch( new URL("../../../public/fonts/Inter-Medium.ttf", import.meta.url),).then((res) => res.arrayBuffer());
export const interRegular = fetch( new URL("../../../public/fonts/Inter-Regular.ttf", import.meta.url),).then((res) => res.arrayBuffer());
export const interLight = fetch( new URL("../../../public/fonts/Inter-Light.ttf", import.meta.url),).then((res) => res.arrayBuffer());
export const calSemiBold = fetch( new URL("../../../public/fonts/CalSans-SemiBold.ttf", import.meta.url),).then((res) => res.arrayBuffer());
export const commitMonoRegular = fetch( new URL("../../../public/fonts/CommitMono-400-Regular.otf", import.meta.url),).then((res) => res.arrayBuffer());
export const commitMonoBold = fetch( new URL("../../../public/fonts/CommitMono-700-Regular.otf", import.meta.url),).then((res) => res.arrayBuffer());