import { defineConfig } from 'vite' export default defineConfig({ server: { proxy: { '/v1': 'http://localhost:8080', '/login': 'http://localhost:8080', '/logout': 'http://localhost:8080', }, }, build: { outDir: 'dist', }, })