From cd8bc7a7a1c142e05445af486509fc976537609c Mon Sep 17 00:00:00 2001 From: Geometrically <18202329+Geometrically@users.noreply.github.com> Date: Fri, 28 May 2021 12:43:44 -0700 Subject: [PATCH] Fix base URL conflicting with default axios ones (#243) --- nuxt.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nuxt.config.js b/nuxt.config.js index 03ead829c..5b9460ae9 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -175,7 +175,7 @@ export default { }, publicRuntimeConfig: { axios: { - browserBaseURL: process.env.API_URL, + browserBaseURL: process.env.BROWSER_BASE_URL, }, ads: { ghostMode: process.env.ENABLE_ADS == null, @@ -189,7 +189,7 @@ export default { }, privateRuntimeConfig: { axios: { - baseURL: process.env.API_URL, + baseURL: process.env.BASE_URL, }, }, }