From 8b5b3dd00cc16c351670a25933f4b37a604abaf8 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Sun, 11 May 2025 23:42:35 +0200 Subject: Initial commit --- client/svelte.config.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 client/svelte.config.js (limited to 'client/svelte.config.js') diff --git a/client/svelte.config.js b/client/svelte.config.js new file mode 100644 index 0000000..09db9ff --- /dev/null +++ b/client/svelte.config.js @@ -0,0 +1,8 @@ +import { vitePreprocess } from "@sveltejs/vite-plugin-svelte"; + +export default { + preprocess: vitePreprocess(), + compilerOptions: { + warningFilter: (warning) => !warning.code.startsWith("css_unused_selector") + } +} -- cgit