fix: don't require a valid sentry dsn for the frontend

This commit is contained in:
sam 2023-12-30 15:38:23 +01:00
parent 55479ae8da
commit 1339550c80
No known key found for this signature in database
GPG Key ID: B4EF20DDE721CAA1
2 changed files with 4 additions and 2 deletions

View File

@ -3,7 +3,7 @@ steps:
image: node
directory: frontend
environment: # SvelteKit expects these in the environment during build time.
- PRIVATE_SENTRY_DSN=non_existent_dsn
- PRIVATE_SENTRY_DSN=
- PUBLIC_BASE_URL=http://pronouns.localhost
- PUBLIC_MEDIA_URL=http://pronouns.localhost/media
- PUBLIC_SHORT_BASE=http://prns.localhost

View File

@ -2,7 +2,9 @@ import { PRIVATE_SENTRY_DSN } from "$env/static/private";
import * as Sentry from "@sentry/node";
import type { HandleServerError } from "@sveltejs/kit";
if (PRIVATE_SENTRY_DSN) {
Sentry.init({ dsn: PRIVATE_SENTRY_DSN });
}
export const handleError = (({ error, event }) => {
console.log(error);