From 55db56448aabd67091014368a95007aae0bdf3ac Mon Sep 17 00:00:00 2001 From: a2a-cloud Date: Sat, 18 Jul 2026 03:22:22 +0000 Subject: [PATCH] a2a-source-edit: remove frontend/vite.config.js --- frontend/vite.config.js | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 frontend/vite.config.js diff --git a/frontend/vite.config.js b/frontend/vite.config.js deleted file mode 100644 index d94d871..0000000 --- a/frontend/vite.config.js +++ /dev/null @@ -1,17 +0,0 @@ -import react from "@vitejs/plugin-react"; -import { defineConfig } from "vite"; - -const agent = process.env.A2A_DEV_AGENT_URL || "http://127.0.0.1:8000"; - -export default defineConfig({ - base: "./", - plugins: [react()], - server: { - proxy: { - "/config.json": agent, - "/a2a-client.js": agent, - "/_a2a": agent, - "/.well-known": agent, - }, - }, -});