Sebastian Frank
86e0a17265
All checks were successful
deploy to production / deploy (push) Successful in 45s
13 lines
544 B
TypeScript
13 lines
544 B
TypeScript
import * as sentry from "./sentry"
|
|
import configClient from "../../api/hooks/config-client"
|
|
|
|
export const apiBaseURL = "/api/"
|
|
export const release = configClient.release
|
|
console.log("Release: ", release)
|
|
|
|
export const sentryDSN = "https://5063f9b5564d0fdece4e47a8e2e63672@sentry.basehosts.de/3"
|
|
export const sentryTracingOrigins = ["localhost", "project-domain.tld", /^\//]
|
|
export const sentryEnvironment: string = "local"
|
|
// need to execute early for fetch wrapping
|
|
// sentry.init(sentryDSN, sentryTracingOrigins, sentryEnvironment, release)
|