Files
doneit-web/src/main.ts
T

47 lines
1.6 KiB
TypeScript
Raw Normal View History

2020-08-05 15:39:16 +01:00
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
2022-12-23 12:23:16 +01:00
/////import * as Sentry from '@sentry/capacitor';
2022-12-17 17:46:08 +01:00
// The example is using Angular, Import '@sentry/vue' or '@sentry/react' when using a Sibling different than Angular.
2022-12-23 12:23:16 +01:00
/////import * as SentrySibling from '@sentry/angular';
2022-12-17 17:46:08 +01:00
// For automatic instrumentation (highly recommended)
2022-12-23 12:23:16 +01:00
///// import { Integration } from '@sentry/types';
///// import { BrowserTracing } from '@sentry/tracing';
2022-12-17 17:46:08 +01:00
2020-08-05 15:39:16 +01:00
if (environment.production) {
enableProdMode();
}
2022-12-23 12:23:16 +01:00
///// Sentry.init(
///// {
///// dsn: 'https://5b345a3ae70b4e4da463da65881b4aaa@o4504340905525248.ingest.sentry.io/4504345615794176',
///// // To set your release and dist versions
///// release: 'gabinetedigital@1.0.0',
///// dist: '1',
///// // Set tracesSampleRate to 1.0 to capture 100% of transactions for performance monitoring.
///// // We recommend adjusting this value in production.
///// tracesSampleRate: 1.0,
///// integrations: [
///// new BrowserTracing({
///// tracingOrigins: ['localhost', 'https://gd-api.oapr.gov.ao/api/'],
///// }) as Integration,
///// ]
///// },
2022-12-17 17:46:08 +01:00
// Forward the init method to the sibling Framework.
2022-12-23 12:23:16 +01:00
///// SentrySibling.init
/////);
2022-12-17 17:46:08 +01:00
2020-08-05 15:39:16 +01:00
platformBrowserDynamic().bootstrapModule(AppModule)
.catch(err => console.log(err));
// Call the element loader after the platform has been bootstrapped
2021-11-30 12:30:58 +01:00
defineCustomElements(window);