trip-planner/frontend/vite.config.js

12 lines
243 B
JavaScript
Raw Normal View History

2025-09-26 00:13:15 +02:00
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
2025-09-27 00:23:19 +02:00
server: {
host: '0.0.0.0', // Allow external connections
port: 5173
}
2025-09-26 00:13:15 +02:00
})