import { defineConfig } from 'vite' import vue from '@vitejs/plugin-vue' import { fileURLToPath, URL } from 'node:url' // https://vitejs.dev/config/ export default defineConfig({ plugins: [vue()], resolve: { alias: { '@': fileURLToPath(new URL('./src', import.meta.url)) } }, server: { host: '0.0.0.0', port: 5173, allowedHosts: ['localhost', 'app.servicefinder.hu', '127.0.0.1', '0.0.0.0'], proxy: { '/api': { target: 'http://sf_api:8000', changeOrigin: true, secure: false } } } })