Use different projects/DSNs for remix and functions

This commit is contained in:
2026-03-12 03:33:37 -04:00
parent d613cc1801
commit 7d29433c36
3 changed files with 3 additions and 3 deletions

View File

@@ -8,7 +8,7 @@ export async function onRequestPost(context: RequestContext) {
const { dsn } = JSON.parse(header);
if (context.env.DSN !== dsn) return jsonError("Bad or no DSN", 400);
if (context.env.REMIX_DSN !== dsn) return jsonError("Bad or no DSN", 400);
const sentryUrl = new URL(dsn);