diff --git a/svelte.config.js b/svelte.config.js index 3f5e5fa..83e82f1 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -9,6 +9,12 @@ const config = { precompress: false, strict: true }) + }, + onwarn: (warning, handler) => { + if (warning.code.startsWith('a11y-')) { + return; + } + handler(warning); } };