From 71e7d84e0f4be6b60d6e9024219d27cd65265c1d Mon Sep 17 00:00:00 2001 From: Sergey Karmanov Date: Mon, 11 May 2026 01:32:51 +0300 Subject: [PATCH] =?UTF-8?q?feat:=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=20HTTP-=D1=8D=D0=BD=D0=B4=D0=BF=D0=BE=D0=B8=D0=BD=D1=82?= =?UTF-8?q?=20=D0=B4=D0=BB=D1=8F=20=D1=84=D1=80=D0=BE=D0=BD=D1=82=D0=B5?= =?UTF-8?q?=D0=BD=D0=B4=D0=B0=20=D0=B2=20=D0=BA=D0=BE=D0=BD=D1=84=D0=B8?= =?UTF-8?q?=D0=B3=D1=83=D1=80=D0=B0=D1=86=D0=B8=D1=8E=20Aspire?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/UniVerse.AppHost/AppHost.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/UniVerse.AppHost/AppHost.cs b/backend/UniVerse.AppHost/AppHost.cs index 36f7eb4..b6b7120 100644 --- a/backend/UniVerse.AppHost/AppHost.cs +++ b/backend/UniVerse.AppHost/AppHost.cs @@ -9,6 +9,7 @@ var api = builder builder .AddExecutable("universe-frontend", "pnpm", workingDirectory: "../../frontend") .WithArgs("run", "dev:aspire") + .WithHttpEndpoint(targetPort: 5173, port: 5173, name: "http", isProxied: false) // Используется в vite.config.ts для server.proxy['/api'].target .WithEnvironment("VITE_API_PROXY_TARGET", api.GetEndpoint("http"));