Add vite react #45

Closed
lukas wants to merge 42 commits from add-frontend into main
1 changed files with 8 additions and 5 deletions
Showing only changes of commit d4c0d47712 - Show all commits

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
}
}
}
});