portal-app/vite.config.ts

12 lines
214 B
TypeScript
Raw Normal View History

2025-02-16 01:53:00 -05:00
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
2025-03-20 02:09:33 -04:00
server: {
host: "0.0.0.0",
port: 5173
},
2025-02-16 01:53:00 -05:00
plugins: [react()],
})