Files
myeasycms-v2/apps/web/instrumentation.ts
giancarlo 24a68b2b1f Add Sentry and Baselime packages in the monitoring section
This commit introduces Sentry and Baselime packages into the monitoring section, complete with associated dependencies and scripts. These changes also reflect necessary updates to the 'pnpm-lock.yaml' file to account for these new dependencies.
2024-04-04 01:09:19 +08:00

8 lines
249 B
TypeScript

import { registerInstrumentation } from '@kit/monitoring';
export async function register() {
// Register monitoring instrumentation based on the
// MONITORING_INSTRUMENTATION_PROVIDER environment variable.
await registerInstrumentation();
}