fix: english translation parity, remove hallucinated map projects, fix next.config syntax
Some checks failed
Build & Deploy / 🔍 Prepare (push) Failing after 1m10s
CI - Lint, Typecheck & Test / quality-assurance (pull_request) Failing after 1m11s
Build & Deploy / 🧪 QA (push) Has been skipped
Build & Deploy / 🏗️ Build (push) Has been skipped
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 32s

This commit is contained in:
2026-05-13 13:25:46 +02:00
parent 66f28d8af2
commit 8fcd68cf19
6 changed files with 145 additions and 90 deletions

View File

@@ -509,7 +509,11 @@ const nextConfig = {
},
{
source: '/errors/:path*',
destination: `${glitchtipDomain}/:path*`,
destination: `${(function() {
let glitchtipUrl = process.env.SENTRY_DSN ? new URL(process.env.SENTRY_DSN).origin : 'https://errors.infra.mintel.me';
if (glitchtipUrl && !glitchtipUrl.startsWith('http')) glitchtipUrl = 'https://' + glitchtipUrl;
return new URL(glitchtipUrl).origin;
})()}/:path*`,
},
],
afterFiles: [],