vue-vben-admin/vite.config.ts
2023-04-05 00:20:48 +08:00

25 lines
628 B
TypeScript

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`), ''),
},
},
},
},
});