This commit is contained in:
Dongho Kim
2026-06-06 22:51:43 +02:00
commit bbb6fe64b9
19 changed files with 3146 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import { defineConfig } from 'vite'
export default defineConfig({
server: {
watch: {
// Required for WSL2 Windows filesystem doesn't fire inotify events
usePolling: true,
interval: 300,
},
host: true,
},
})