From 10b8811fc44ec852132d5d9477d04b9859199ff4 Mon Sep 17 00:00:00 2001 From: Maya Date: Sun, 19 Oct 2025 17:47:21 +0300 Subject: [PATCH] fix: blob scheme --- src/lib/store/index.svelte.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/store/index.svelte.ts b/src/lib/store/index.svelte.ts index 3eab49c..80a1fb9 100644 --- a/src/lib/store/index.svelte.ts +++ b/src/lib/store/index.svelte.ts @@ -384,6 +384,6 @@ export function sanitize( a: ["href", "target", "rel", "class"], "*": ["class"], }, - allowedSchemes: ["http", "https", "mailto"], + allowedSchemes: ["http", "https", "mailto", "blob"], }); }