Commits on Source 4
-
Martin Claesson authored
-
Martin Claesson authored
chore(release): 0.11.3 See merge request !52
-
Martin Claesson authored
fix(sentry): add release version to sentry logs See merge request !51
-
Semantic Release authored
## [0.11.4](v0.11.3...v0.11.4) (2022-10-26) ### Bug Fixes * **sentry:** add release version to sentry logs ([61bd0e50](61bd0e50))
... | ... | @@ -3,6 +3,7 @@ import path from 'path' |
/** | ||
* @type {import('@nuxt/types').Configuration} | ||
* @property {import('@nuxtjs/sentry').ModuleConfiguration} sentry | ||
*/ | ||
export default { | ||
// Disable server-side rendering: https://go.nuxtjs.dev/ssr-mode | ||
... | ... | @@ -76,9 +77,18 @@ export default { |
}, | ||
}, | ||
/** | ||
* Sentry module configuration: https://sentry.nuxtjs.org/guide/setup.html#configuration | ||
*/ | ||
sentry: { | ||
dsn: process.env.NUXT_SENTRY_FRONTEND_URL ?? "https://[email protected]/2", | ||
environment: process.env.NUXT_SENTRY_ENVIRONMENT ?? "development", | ||
config: { | ||
release: process.env.NUXT_SENTRY_RELEASE ?? "development", | ||
}, | ||
clientIntegrations: { | ||
ReportingObserver: false | ||
}, | ||
tracing: { | ||
tracesSampleRate: 1.0, | ||
vueOptions: { | ||
... | ... | @@ -121,3 +131,5 @@ export default { |
target: 'static' | ||
} | ||
... | ... | @@ -10,7 +10,8 @@ export const config = { |
Sentry: { | ||
dsn: process.env.SENTRY_BACKEND_URL ?? "https://[email protected]/3", | ||
environment: process.env.SENTRY_ENVIRONMENT ?? "development", | ||
} | ||
}, | ||
version: process.env.ALBONEON_VERSION ?? "development", | ||
} | ||
export default config |