import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' export default defineConfig({ plugins: [react()], build: { outDir: 'dist', }, server: { port: 8080, proxy: { '/api': { target: 'https://api.syui.ai', changeOrigin: true, rewrite: (path) => path.replace(/^\/api/, '') } } }, preview: { port: 4173, host: true, https: false } })