Files
Event-Management-System/frontend/vite.config.ts
2026-08-04 03:42:38 +00:00

13 lines
234 B
TypeScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
host: true,
port: 5176,
allowedHosts: true,
},
})