chore: remove Baselime monitoring integration and dependencies (#348)
- Deleted `@kit/baselime` package and its related files. - Removed Baselime service registration from monitoring in API services. - Cleared `registerInstrumentation`, hooks, provider components, and server utilities associated with Baselime. - Updated package dependencies to exclude `@kit/baselime`.
This commit is contained in:
committed by
GitHub
parent
caf86ce09b
commit
b3acbbe801
@@ -1,7 +1,13 @@
|
||||
import { z } from 'zod';
|
||||
|
||||
const MONITORING_PROVIDERS = [
|
||||
'sentry',
|
||||
'',
|
||||
// Add more providers here
|
||||
] as const;
|
||||
|
||||
export const MONITORING_PROVIDER = z
|
||||
.enum(['baselime', 'sentry', ''])
|
||||
.enum(MONITORING_PROVIDERS)
|
||||
.optional()
|
||||
.transform((value) => value || undefined);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user