123456789101112131415161718192021222324 |
- import { defineApplicationConfig } from '@vben/vite-config';
- export default defineApplicationConfig({
- overrides: {
- server: {
- proxy: {
- '/basic-api': {
- target: 'http://localhost:3000',
- changeOrigin: true,
- ws: true,
- rewrite: (path) => path.replace(new RegExp(`^/basic-api`), ''),
- // only https
- // secure: false
- },
- '/upload': {
- target: 'http://localhost:3300/upload',
- changeOrigin: true,
- ws: true,
- rewrite: (path) => path.replace(new RegExp(`^/upload`), ''),
- },
- },
- },
- },
- });
|