discovery-by-llm/frontend/vite.config.ts
Justin Visser a3af8f45cc
Some checks are pending
ci / backend (push) Waiting to run
ci / frontend (push) Waiting to run
fix(frontend): harden the streaming ui and extract copy and constants
2026-08-10 15:42:18 +02:00

15 lines
301 B
TypeScript

import vue from '@vitejs/plugin-vue'
import { defineConfig } from 'vitest/config'
export default defineConfig({
plugins: [vue()],
test: {
environment: 'happy-dom',
},
server: {
proxy: {
'/api': 'http://127.0.0.1:8888',
'/callback': 'http://127.0.0.1:8888',
},
},
})