From 371460bcfbed3b9b5dcb62714ec89ce430f98386 Mon Sep 17 00:00:00 2001 From: host Date: Sat, 25 Jul 2026 03:46:53 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A3=D0=B4=D0=B0=D0=BB=D0=B5=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5=20=D1=84=D0=B0=D0=B9=D0=BB=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vite.config.js | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 vite.config.js diff --git a/vite.config.js b/vite.config.js deleted file mode 100644 index 4f89489..0000000 --- a/vite.config.js +++ /dev/null @@ -1,18 +0,0 @@ -import { defineConfig } from "vite"; -import react from "@vitejs/plugin-react"; - -export default defineConfig({ - plugins: [react()], - server: { - host: true, - port: 5173, - proxy: { - "/api": { - target: "http://backend:8000", - changeOrigin: true, - rewrite: (path) => path.replace(/^\/api/, ""), - ws: true, - }, - }, - }, -});