diff --git a/.env.dev b/.env.dev index cb3ca49..f3dd0cb 100644 --- a/.env.dev +++ b/.env.dev @@ -2,7 +2,6 @@ RUN_TYPE=dev BASE_DOMAIN='.onstove.com' # URLS ############################################################################## -BASE_API_URL='https://api-dev.onstove.com' STATIC_URL='https://static-pubcomm.gate8.com' # STOVE ############################################################################# diff --git a/.env.live b/.env.live index f8ee6a2..36ba550 100644 --- a/.env.live +++ b/.env.live @@ -2,7 +2,6 @@ RUN_TYPE=live BASE_DOMAIN='.onstove.com' # URLS ############################################################################## -BASE_API_URL='https://api.onstove.com' STATIC_URL='https://static-pubcomm.onstove.com' # STOVE ############################################################################# diff --git a/.env.sandbox b/.env.sandbox index 4e31dcd..a1126db 100644 --- a/.env.sandbox +++ b/.env.sandbox @@ -2,7 +2,6 @@ RUN_TYPE=sandbox BASE_DOMAIN='.gate8.com' # URLS ############################################################################## -BASE_API_URL='https://api.gate8.com' STATIC_URL='https://static-pubcomm.gate8.com' # STOVE ############################################################################# diff --git a/nuxt.config.ts b/nuxt.config.ts index 525a678..de3a4d5 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -76,7 +76,6 @@ export default defineNuxtConfig({ runType: process.env.RUN_TYPE, baseDomain: process.env.BASE_DOMAIN, - baseApiUrl: process.env.BASE_API_URL, staticUrl: process.env.STATIC_URL, stoveApiUrl: process.env.STOVE_API_URL,