blob: 09db9ffa06f079b8f1110165ede0471853ee9692 (
plain)
1
2
3
4
5
6
7
8
|
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
export default {
preprocess: vitePreprocess(),
compilerOptions: {
warningFilter: (warning) => !warning.code.startsWith("css_unused_selector")
}
}
|