Spaces:
Runtime error
Runtime error
| import { defineConfig } from 'vite' | |
| import react from '@vitejs/plugin-react' | |
| export default defineConfig({ | |
| plugins: [react()], | |
| server: { | |
| proxy: { | |
| '/v1': { | |
| target: 'https://moelove.info', | |
| changeOrigin: true, | |
| secure: false, | |
| headers: { | |
| 'Access-Control-Allow-Origin': '*' | |
| } | |
| }, | |
| '/api': { | |
| target: 'http://localhost:7860', | |
| changeOrigin: true | |
| } | |
| } | |
| } | |
| }) | |