2025-07-01 13:26:46 -03:00
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
|
|
|
|
|
|
// https://vite.dev/config/
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
plugins: [react()],
|
2025-07-01 16:05:26 -03:00
|
|
|
server: {
|
|
|
|
|
host: true, // o "0.0.0.0"
|
|
|
|
|
port: 5173 // el puerto que uses, opcional
|
|
|
|
|
}
|
2025-07-01 13:26:46 -03:00
|
|
|
})
|