23 lines
489 B
JavaScript
23 lines
489 B
JavaScript
import SentryConfig from './sentry_config';
|
|
|
|
const index = function index() {
|
|
SentryConfig.init({
|
|
dsn: gon.sentry_dsn,
|
|
currentUserId: gon.current_user_id,
|
|
whitelistUrls:
|
|
process.env.NODE_ENV === 'production'
|
|
? [gon.gitlab_url]
|
|
: [gon.gitlab_url, 'webpack-internal://'],
|
|
environment: gon.sentry_environment,
|
|
release: gon.revision,
|
|
tags: {
|
|
revision: gon.revision,
|
|
},
|
|
});
|
|
|
|
return SentryConfig;
|
|
};
|
|
|
|
index();
|
|
|
|
export default index;
|