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.
8 lines
249 B
TypeScript
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();
|
|
}
|