-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathapp.ts
More file actions
20 lines (16 loc) · 580 Bytes
/
app.ts
File metadata and controls
20 lines (16 loc) · 580 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import Application from '@ember/application';
import * as Sentry from '@sentry/ember';
import loadInitializers from 'ember-load-initializers';
import Resolver from 'ember-resolver';
import config from './config/environment';
Sentry.init({
replaysSessionSampleRate: 1,
replaysOnErrorSampleRate: 1,
tunnel: `http://localhost:3031/`, // proxy server
});
export default class App extends Application {
public modulePrefix = config.modulePrefix;
public podModulePrefix = config.podModulePrefix;
public Resolver = Resolver;
}
loadInitializers(App, config.modulePrefix);