vite.config.ts 283 B

12345678910111213141516
  1. import { defineConfig } from 'vite';
  2. export default defineConfig({
  3. base: '/ui/',
  4. build: {
  5. outDir: '../dist/web',
  6. emptyOutDir: true
  7. },
  8. server: {
  9. port: 3001,
  10. proxy: {
  11. '/api': 'http://localhost:3000',
  12. '/health': 'http://localhost:3000'
  13. }
  14. }
  15. });