Did some package updates, Svelte build changes (fewer warnings), work on IDAA and Jitsi service.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user