Add frontend vite config

This commit is contained in:
2026-01-26 21:50:25 +11:00
parent ad7a148b83
commit cc8d1244a6

14
frontend/vite.config.ts Normal file
View File

@@ -0,0 +1,14 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
server: {
host: '0.0.0.0',
port: 5173,
watch: {
usePolling: true
}
}
})