Fix Vite proxy config

This commit is contained in:
Lukáš Kucharczyk 2023-01-25 17:48:51 +01:00
parent 22fd1c356a
commit 65e556656f
Signed by: lukas
SSH Key Fingerprint: SHA256:vMuSwvwAvcT6htVAioMP7rzzwMQNi3roESyhv+nAxeg
1 changed files with 8 additions and 5 deletions

View File

@ -1,12 +1,15 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
server: {
proxy: {
"/api": "http://127.0.0.1:8001",
},
},
'/api': {
target: 'http://127.0.0.1:8000',
changeOrigin: true
}
}
}
});