Files
haushalt/frontend/vite.config.js
Marek Lenczewski 4a053c5ee7 update ddev
2026-04-12 21:55:04 +02:00

17 lines
330 B
JavaScript

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vite.dev/config/
export default defineConfig({
plugins: [vue()],
server: {
host: '0.0.0.0',
port: 5173,
strictPort: true,
allowedHosts: ['haushalt.ddev.site'],
proxy: {
'/api': 'http://localhost:80',
},
},
})