import { defineConfig } from 'vite' import uni from '@dcloudio/vite-plugin-uni' export default defineConfig({ plugins: [uni()], server: { port: 8081, proxy: { '/gym-api': { target: 'http://localhost:8084', changeOrigin: true, secure: false, rewrite: (path) => path.replace(/^\/gym-api/, '') } } } })