diff --git a/public/rss/feed.xml b/public/rss/feed.xml index d1e5fa5f..7402fe4c 100644 --- a/public/rss/feed.xml +++ b/public/rss/feed.xml @@ -4,7 +4,7 @@ The David Dias | Front-End Developer, podcaster & content creator https://thedaviddias.dev Hey, I'm David Dias! Front-End Developer based in Toronto/Canada. I love talking about code, technology, expatriation and life. - Sat, 04 Feb 2023 17:43:29 GMT + Sat, 04 Feb 2023 17:46:48 GMT https://validator.w3.org/feed/docs/rss2.html https://github.com/jpmonette/feed en diff --git a/public/rss/fr/feed.xml b/public/rss/fr/feed.xml index 5524a26f..300cfd67 100644 --- a/public/rss/fr/feed.xml +++ b/public/rss/fr/feed.xml @@ -4,7 +4,7 @@ The David Dias | Développeur Front-End, podcasteur & créateur de contenu https://thedaviddias.dev Salut toi! Je m'appele David Dias. Je suis développeur Front-End, podcasteur, créateur de contenu numérique passioné pour résoudre les problèmes digitaux et humains! J'aime rencontrer de nouvelles personnes, bâtir des communautées et parler de tech, d'expatriation et de web. - Sat, 04 Feb 2023 17:43:29 GMT + Sat, 04 Feb 2023 17:46:48 GMT https://validator.w3.org/feed/docs/rss2.html https://github.com/jpmonette/feed fr diff --git a/sentry.client.config.ts b/sentry.client.config.ts index 419f5ce2..8615f42a 100644 --- a/sentry.client.config.ts +++ b/sentry.client.config.ts @@ -10,10 +10,4 @@ Sentry.init({ dsn: SENTRY_DSN || 'https://0823630951cd4283831b65772dc9ed58@o515454.ingest.sentry.io/6601262', tracesSampleRate: 0, denyUrls: ['localhost'], - ignoreErrors: [ - // ignore hydration issues - 'Minified React error #418;', - 'Minified React error #423;', - 'Minified React error #425;', - ], }) diff --git a/sentry.edge.config.ts b/sentry.edge.config.ts new file mode 100644 index 00000000..f94e2f1b --- /dev/null +++ b/sentry.edge.config.ts @@ -0,0 +1,15 @@ +import * as Sentry from '@sentry/nextjs' + +const SENTRY_DSN = process.env.SENTRY_DSN || process.env.NEXT_PUBLIC_SENTRY_DSN + +Sentry.init({ + dsn: SENTRY_DSN || 'https://0823630951cd4283831b65772dc9ed58@o515454.ingest.sentry.io/6601262', + tracesSampleRate: 0, + denyUrls: ['localhost'], + ignoreErrors: [ + // ignore hydration issues + 'Minified React error #418;', + 'Minified React error #423;', + 'Minified React error #425;', + ], +})