设置代理 设置代理import { defineConfig } from 'vite';export default defineConfig({ server: { proxy: { "/api": { target: "http://localhost:8080" } } }})