fix. 불필요한 env값 제거

This commit is contained in:
clkim
2025-09-16 16:52:36 +09:00
parent 28766d0b25
commit 84b8607bec
4 changed files with 0 additions and 4 deletions

View File

@@ -2,7 +2,6 @@ RUN_TYPE=dev
BASE_DOMAIN='.onstove.com' BASE_DOMAIN='.onstove.com'
# URLS ############################################################################## # URLS ##############################################################################
BASE_API_URL='https://api-dev.onstove.com'
STATIC_URL='https://static-pubcomm.gate8.com' STATIC_URL='https://static-pubcomm.gate8.com'
# STOVE ############################################################################# # STOVE #############################################################################

View File

@@ -2,7 +2,6 @@ RUN_TYPE=live
BASE_DOMAIN='.onstove.com' BASE_DOMAIN='.onstove.com'
# URLS ############################################################################## # URLS ##############################################################################
BASE_API_URL='https://api.onstove.com'
STATIC_URL='https://static-pubcomm.onstove.com' STATIC_URL='https://static-pubcomm.onstove.com'
# STOVE ############################################################################# # STOVE #############################################################################

View File

@@ -2,7 +2,6 @@ RUN_TYPE=sandbox
BASE_DOMAIN='.gate8.com' BASE_DOMAIN='.gate8.com'
# URLS ############################################################################## # URLS ##############################################################################
BASE_API_URL='https://api.gate8.com'
STATIC_URL='https://static-pubcomm.gate8.com' STATIC_URL='https://static-pubcomm.gate8.com'
# STOVE ############################################################################# # STOVE #############################################################################

View File

@@ -76,7 +76,6 @@ export default defineNuxtConfig({
runType: process.env.RUN_TYPE, runType: process.env.RUN_TYPE,
baseDomain: process.env.BASE_DOMAIN, baseDomain: process.env.BASE_DOMAIN,
baseApiUrl: process.env.BASE_API_URL,
staticUrl: process.env.STATIC_URL, staticUrl: process.env.STATIC_URL,
stoveApiUrl: process.env.STOVE_API_URL, stoveApiUrl: process.env.STOVE_API_URL,