Files
pamietnik/webapp/vite.config.ts
2026-04-05 20:25:50 +02:00

15 lines
264 B
TypeScript

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