Files
doneit-web/src/main.ts
T
Peter Maquiran f640ac7e33 merge
2022-12-30 15:39:42 +01:00

48 lines
1.7 KiB
TypeScript

import { enableProdMode } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app/app.module';
import { environment } from './environments/environment';
import { defineCustomElements } from '@ionic/pwa-elements/loader';
import "hammerjs"; // HAMMER TIME
/////123////import * as Sentry from '@sentry/capacitor';
// The example is using Angular, Import '@sentry/vue' or '@sentry/react' when using a Sibling different than Angular.
/////123////import * as SentrySibling from '@sentry/angular';
// For automatic instrumentation (highly recommended)
/////123//// import { Integration } from '@sentry/types';
/////123//// import { BrowserTracing } from '@sentry/tracing';
if (environment.production) {
enableProdMode();
}
/////123//// Sentry.init(
/////123//// {
/////123//// dsn: 'https://5b345a3ae70b4e4da463da65881b4aaa@o4504340905525248.ingest.sentry.io/4504345615794176',
// To set your release and dist versions
/////123//// release: 'gabinetedigital@1.0.0',
/////123//// dist: '1',
// Set tracesSampleRate to 1.0 to capture 100% of transactions for performance monitoring.
// We recommend adjusting this value in production.
/////123//// integrations: [
/////123//// new BrowserTracing({
/////123//// tracingOrigins: ['localhost', 'https://gd-api.oapr.gov.ao/api/'],
/////123//// }) as Integration,
/////123//// ]
/////123//// },
// Forward the init method to the sibling Framework.
/////123//// SentrySibling.init
/////123////);
platformBrowserDynamic().bootstrapModule(AppModule)
.catch(err => console.log(err));
// Call the element loader after the platform has been bootstrapped
defineCustomElements(window);