2025-08-22 23:42:34 +02:00
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
plugins: [react()],
|
|
|
|
|
server: {
|
2026-03-20 16:03:54 +01:00
|
|
|
host: '127.0.0.1',
|
2025-08-22 23:42:34 +02:00
|
|
|
port: 5173,
|
|
|
|
|
strictPort: true
|
|
|
|
|
},
|
|
|
|
|
build: {
|
|
|
|
|
outDir: 'dist'
|
|
|
|
|
}
|
2026-03-20 16:03:54 +01:00
|
|
|
})
|