Add vite proxy config

This commit is contained in:
Lukáš Kucharczyk 2023-01-25 11:48:17 +01:00
parent b0ef975c2b
commit 03142bc3c3
Signed by: lukas
SSH Key Fingerprint: SHA256:vMuSwvwAvcT6htVAioMP7rzzwMQNi3roESyhv+nAxeg
1 changed files with 8 additions and 3 deletions

View File

@ -1,7 +1,12 @@
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: {
"/": "http://localhost:8001",
},
},
});