public uptime monitoring + (soon) observability with events saved to PDS
1/**
2 * build-time configuration
3 */
4
5import type { ActorIdentifier } from '@atcute/lexicons';
6
7declare const __CONFIG__: {
8 pds: string;
9 did: ActorIdentifier;
10 title: string;
11 subtitle: string;
12 /** whether to show the 5-minute inactivity warning */
13 showInactivityWarning?: boolean;
14 /** minutes to check for recent activity (default: 5) */
15 inactivityThresholdMinutes?: number;
16};
17
18export const config = __CONFIG__ as typeof __CONFIG__ & {
19 showInactivityWarning: boolean;
20 inactivityThresholdMinutes: number;
21};
22