feat: initial commit
This commit is contained in:
commit
8d93a2edab
19 changed files with 296 additions and 0 deletions
12
vite.config.ts
Normal file
12
vite.config.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
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/**']
|
||||
}
|
||||
}
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue