From 210727ea0ee70dba16620defc029116113c153fd Mon Sep 17 00:00:00 2001 From: Liyas Thomas Date: Sun, 30 Aug 2020 11:10:19 +0530 Subject: [PATCH] Added default `BASE_URL` env variable --- nuxt.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nuxt.config.js b/nuxt.config.js index 805be0230..a6bc7756f 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -300,7 +300,7 @@ export default { publicRuntimeConfig: { GA_ID: process.env.GA_ID || "UA-61422507-4", GTM_ID: process.env.GTM_ID || "GTM-NMKVBMV", - BASE_URL: process.env.BASE_URL || "/", + BASE_URL: process.env.BASE_URL || "https://hoppscotch.io/", }, privateRuntimeConfig: { API_KEY: process.env.API_KEY,