Did some package updates, Svelte build changes (fewer warnings), work on IDAA and Jitsi service.

This commit is contained in:
Scott Idem
2025-12-12 14:57:10 -05:00
parent 1611ac0183
commit 2a5b46883f
7 changed files with 256 additions and 212 deletions

View File

@@ -37,6 +37,16 @@ const config = {
// include: ["highlight.js/lib/core"],
// },
// },
},
onwarn: (warning, defaultHandler) => {
// Suppress the 'state_referenced_locally', 'non_reactive_update', and 'css_unused_selector' warnings
if (warning.code === 'state_referenced_locally' || warning.code === 'non_reactive_update' || warning.code === 'css_unused_selector') {
return;
}
// Handle other warnings with the default handler
defaultHandler(warning);
}
};
export default config;