Files
service-finder/frontend_app/vite.config.ts
2026-06-24 11:29:45 +00:00

25 lines
564 B
TypeScript

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
}
}
}
})