chore: make code prettier

see what i did there :3
This commit is contained in:
uku 2024-10-22 11:34:40 +02:00
parent 6f6cd270eb
commit b472e99fcc
Signed by: uku
SSH key fingerprint: SHA256:4P0aN6M8ajKukNi6aPOaX0LacanGYtlfjmN+m/sHY/o
6 changed files with 351 additions and 353 deletions

View file

@ -1,12 +1,12 @@
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
import { sveltekit } from "@sveltejs/kit/vite";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [sveltekit()],
server: {
watch: {
// direnv somehow makes vite exponentially slower with bun
ignored: ['**/.direnv/**']
}
}
ignored: ["**/.direnv/**"],
},
},
});