diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-08-05 14:58:25 -0400 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-08-05 14:58:25 -0400 |
commit | 6fd572d3b6bdf022dd3edbb266e8afd3ada0ea16 (patch) | |
tree | f3f60747f9e0f674ccdc0f1c4273a06195c1c595 | |
parent | f71f12f5a8d6a9c0c174f063c41193cd816df892 (diff) |
Use `process.env.URL` instead of `DEPLOY_URL`.
-rw-r--r-- | docs/docusaurus.config.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index 2704b65..2fdb36d 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -55,7 +55,7 @@ module.exports = { { label: "Discord", href: - (process.env.DEPLOY_URL || "https://zmkfirmware.dev") + + (process.env.URL || "https://zmkfirmware.dev") + "/community/discord/invite", }, { |