Files
baseball-league-cost-estimator/vite.config.ts
Anthony Correa 58bf32379f Add Docker support and update Vite config for container dev
- Add Dockerfile for Node-based Vite dev server setup
- Add empty docker-compose.yml as placeholder
- Set Vite to listen on 0.0.0.0 and strict port 5173 in config
2025-08-21 17:16:18 -05:00

12 lines
286 B
TypeScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwind from '@tailwindcss/vite'
export default defineConfig({
server: {
host: '0.0.0.0', // or 'my.local.dev'
port: 5173,
strictPort: true
},
plugins: [react(), tailwind()],
})