This commit is contained in:
Julien Valverdé
2025-09-17 00:45:40 +02:00
parent 33d78259ee
commit 1a4a11a552
4 changed files with 11 additions and 4 deletions

View File

@@ -5,4 +5,11 @@ import { defineConfig } from "vite"
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
host: true,
port: 80,
proxy: {
"/rpc*": "http://server",
},
},
})