cosmo/frontend/vite.config.ts

12 lines
251 B
TypeScript
Raw Normal View History

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
2025-11-27 10:14:25 +00:00
server: {
host: '0.0.0.0', // Listen on all network interfaces
port: 5173,
},
})