vite.config.ts 267 B

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