Skip to content

Commit 3a99ece

Browse files
committed
fix: remove unused env variable
1 parent 5de0c9a commit 3a99ece

File tree

5 files changed

+1
-5
lines changed

5 files changed

+1
-5
lines changed

.env.mainnet

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
VUE_APP_WS_URL=wss://be.explorer.rootstock.io
22
VUE_APP_NETWORK=mainnet
3-
VUE_APP_APPS_URL=""
43
VUE_APP_STATS_URL=https://stats.rootstock.io
54
VUE_APP_GA_TAG=GTM-56J7JTD
65
VUE_APP_HOTJAR_ID=1857874

.env.staging

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
VUE_APP_WS_URL=wss://explorer-testnet-api.plattie-dev.iovlabs.net
22
VUE_APP_NETWORK=testnet
3-
VUE_APP_APPS_URL=""
43
VUE_APP_STATS_URL=https://stats.testnet.rootstock.io
54
VUE_APP_GA_TAG=UA-136026316-1
65
VUE_APP_HOTJAR_ID=1901396

.env.testnet

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
VUE_APP_WS_URL=wss://be.explorer.testnet.rootstock.io
22
VUE_APP_NETWORK=testnet
3-
VUE_APP_APPS_URL=https://apps.explorer.testnet.rsk.co # I think this is no longer used
43
VUE_APP_STATS_URL=https://stats.testnet.rootstock.io
54
VUE_APP_GA_TAG=UA-136026316-1
65
VUE_APP_HOTJAR_ID=1901396

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ The configuration is provided through this environment variables:
4141
- **STATS_URL**: rsk stats web (link redirect the 'stats' link)
4242
- **GA_TAG**: (optional) Google analytics tag.
4343
- **HOTJAR_ID**: (optional) Hotjar ID.
44-
- **APPS_URL**: rsk apps web (link redirect the 'apps' link)
4544

4645
E.g. *to change the backend url :*
4746

vue.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module.exports = {
2020
.plugin('define')
2121
.tap(args => {
2222
const env = args[0]['process.env']
23-
const props = ['WS_URL', 'NETWORK', 'STATS_URL', 'GA_TAG', 'HOTJAR_ID', 'STREAM_MITM_URL', 'APPS_URL']
23+
const props = ['WS_URL', 'NETWORK', 'STATS_URL', 'GA_TAG', 'HOTJAR_ID', 'STREAM_MITM_URL']
2424
props.forEach((v) => {
2525
env[v] = (process.env[v]) ? JSON.stringify(process.env[v]) : env['VUE_APP_' + v] || '""'
2626
})

0 commit comments

Comments
 (0)