diff --git a/uptime.config.ts b/uptime.config.ts index b9b3b4b..5763953 100644 --- a/uptime.config.ts +++ b/uptime.config.ts @@ -111,23 +111,7 @@ const workerConfig: WorkerConfig = { // const maintenances: MaintenanceConfig[] = [] -const maintenances: MaintenanceConfig[] = [ - { - // [Optional] Monitor IDs to be affected by this maintenance - monitors: ['foo_monitor', 'bar_monitor'], - // [Optional] default to "Scheduled Maintenance" if not specified - title: 'Test Maintenance', - // Description of the maintenance, will be shown at status page - body: 'This is a test maintenance, server software upgrade', - // Start time of the maintenance, in UNIX timestamp or ISO 8601 format - start: '2020-01-01T00:00:00+08:00', - // [Optional] end time of the maintenance, in UNIX timestamp or ISO 8601 format - // if not specified, the maintenance will be considered as on-going - end: '2050-01-01T00:00:00+08:00', - // [Optional] color of the maintenance alert at status page, default to "yellow" - color: 'blue', - }, -] +const maintenances: MaintenanceConfig[] = []; // Don't edit this line export { maintenances, pageConfig, workerConfig }