From a89af91a19d68c7cc3e16e21ff62e26d34be6803 Mon Sep 17 00:00:00 2001 From: yuhao1118 Date: Tue, 23 May 2023 10:18:43 +0800 Subject: [PATCH] fix: env format --- web/.env.example | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/.env.example b/web/.env.example index 3e4288de0a..acd853834f 100644 --- a/web/.env.example +++ b/web/.env.example @@ -1,12 +1,12 @@ # For production release, change this to PRODUCTION -export NEXT_PUBLIC_DEPLOY_ENV=DEVELOPMENT +NEXT_PUBLIC_DEPLOY_ENV=DEVELOPMENT # The deployment edition, SELF_HOSTED or CLOUD -export NEXT_PUBLIC_EDITION=SELF_HOSTED +NEXT_PUBLIC_EDITION=SELF_HOSTED # The base URL of console application, refers to the Console base URL of WEB service if console domain is # different from api or web app domain. # example: http://cloud.dify.ai/console/api -export NEXT_PUBLIC_API_PREFIX=http://localhost:5001/console/api +NEXT_PUBLIC_API_PREFIX=http://localhost:5001/console/api # The URL for Web APP, refers to the Web App base URL of WEB service if web app domain is different from # console or api domain. # example: http://udify.app/api -export NEXT_PUBLIC_PUBLIC_API_PREFIX=http://localhost:5001/api \ No newline at end of file +NEXT_PUBLIC_PUBLIC_API_PREFIX=http://localhost:5001/api \ No newline at end of file