Skip to content

Commit

Permalink
Allow docs website to get variables through env (evmos#907)
Browse files Browse the repository at this point in the history
  • Loading branch information
v-homsi authored Sep 19, 2022
1 parent 67f5b76 commit f34bb25
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/.vuepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ module.exports = {
[
"@vuepress/google-analytics",
{
ga: "UA-232833231-1",
ga: process.env.GOOGLE_ANALYTICS_ID || '',
},
],
],
Expand Down Expand Up @@ -94,8 +94,8 @@ module.exports = {
src: "/evmos-black.svg",
},
algolia: {
id: "K3VQTEW3G5",
key: "bf836a3c934b1d4df091d5c5b69c65d7",
id: process.env.ALGOLIA_ID || '',
key: process.env.ALGOLIA_KEY || '',
index: "evmos",
},
topbar: {
Expand Down

0 comments on commit f34bb25

Please sign in to comment.