AIGC/AIGC-admin/frontend/vite.config.ts

15 lines
256 B
TypeScript
Raw Permalink Normal View History

2026-02-27 14:37:19 +08:00
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
server: {
proxy: {
'/api': {
target: 'http://localhost:20006',
changeOrigin: true,
}
}
}
})