Add vite react #45

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

View File

@ -1,7 +1,12 @@
import { defineConfig } from 'vite' import { defineConfig } from "vite";
import react from '@vitejs/plugin-react' import react from "@vitejs/plugin-react";
// https://vitejs.dev/config/ // https://vitejs.dev/config/
export default defineConfig({ export default defineConfig({
plugins: [react()], plugins: [react()],
}) server: {
proxy: {
"/": "http://localhost:8001",
},
},
});