···11+/**
22+ * Configuration module for the PDS Dashboard
33+ */
44+export class Config {
55+ /**
66+ * The base URL of the PDS (Personal Data Server)
77+ * @default "https://pds.witchcraft.systems"
88+ */
99+ static readonly PDS_URL: string = "https://pds.witchcraft.systems";
1010+1111+ /**
1212+ * The base URL of the frontend service for linking to replies
1313+ * @default "https://deer.social"
1414+ */
1515+ static readonly FRONTEND_URL: string = "https://deer.social";
1616+}