Server Configured

This commit is contained in:
RIT Services
2026-08-03 12:28:42 +00:00
parent 9f419a2503
commit fafb8d5bce
19 changed files with 93 additions and 131 deletions

View File

@@ -1,11 +1,12 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
host: true, // Allow network access
host: true,
allowedHosts: true,
hmr: false,
},
})