+ {#if loading}
+
+ Loading your camera...
+
+ {/if}
+
+
diff --git a/svelte.config.js b/svelte.config.js
index 232bea4..0699ce9 100644
--- a/svelte.config.js
+++ b/svelte.config.js
@@ -25,4 +25,9 @@ export default {
},
},
},
+ compilerOptions: {
+ warningFilter: (warning) => {
+ return !['a11y_media_has_caption'].includes(warning.code)
+ },
+ }
}