Files
2026-08-03 12:28:42 +00:00

13 lines
222 B
TypeScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
host: true,
allowedHosts: true,
hmr: false,
},
})