Files
worldcup2026/vite.config.js
T
Dongho Kim bbb6fe64b9 update
2026-06-06 22:51:43 +02:00

13 lines
246 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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,
},
})