From 612c4fec4c941e9f5ddc422cfc5e7aa79f090061 Mon Sep 17 00:00:00 2001 From: TtiPo Date: Mon, 29 Jun 2026 21:11:59 +0900 Subject: [PATCH] =?UTF-8?q?docs:=20=ED=94=84=EB=A1=A0=ED=8A=B8=20env=20?= =?UTF-8?q?=EC=97=90=20VITE=5FLIVEKIT=5FURL=20=EB=A7=A4=ED=95=91=20?= =?UTF-8?q?=EC=A3=BC=EC=84=9D=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit docker-compose 가 LIVEKIT_WS_URL → VITE_LIVEKIT_URL 로 주입함을 명시. Co-Authored-By: Claude Opus 4.8 (1M context) --- frontend/.env.development.example | 1 + frontend/.env.production.example | 1 + 2 files changed, 2 insertions(+) diff --git a/frontend/.env.development.example b/frontend/.env.development.example index 3199cce..ab55572 100644 --- a/frontend/.env.development.example +++ b/frontend/.env.development.example @@ -3,5 +3,6 @@ # VITE_ 변수는 docker-compose 가 루트 .env.development 값을 build arg 로 주입한다: # VITE_API_BASE_URL ← BACKEND_API_URL # VITE_AI_TIMEOUT_MS ← AI_TIMEOUT_MS +# VITE_LIVEKIT_URL ← LIVEKIT_WS_URL # 따라서 이 파일에 별도로 작성할 값은 없다. # ========================================== diff --git a/frontend/.env.production.example b/frontend/.env.production.example index 1a11326..c2572fd 100644 --- a/frontend/.env.production.example +++ b/frontend/.env.production.example @@ -3,5 +3,6 @@ # VITE_ 변수는 docker-compose 가 루트 .env.production 값을 build arg 로 주입한다: # VITE_API_BASE_URL ← BACKEND_API_URL # VITE_AI_TIMEOUT_MS ← AI_TIMEOUT_MS +# VITE_LIVEKIT_URL ← LIVEKIT_WS_URL # 따라서 이 파일에 별도로 작성할 값은 없다. # ==========================================