diff options
| author | Pitu <[email protected]> | 2021-08-22 22:50:30 +0900 |
|---|---|---|
| committer | Pitu <[email protected]> | 2021-08-22 22:50:30 +0900 |
| commit | ff046169bf9beefa6441d377afefb190c35dfc1d (patch) | |
| tree | 0ed1cd5d81ff93d2f61a71daa84e1e726afdeb7c | |
| parent | fix: chunked upload post (diff) | |
| download | host.fuwn.me-ff046169bf9beefa6441d377afefb190c35dfc1d.tar.xz host.fuwn.me-ff046169bf9beefa6441d377afefb190c35dfc1d.zip | |
fix: wrong case on env variable
| -rw-r--r-- | src/api/routes/service/configGET.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/routes/service/configGET.js b/src/api/routes/service/configGET.js index f69d9eb..cbffbe5 100644 --- a/src/api/routes/service/configGET.js +++ b/src/api/routes/service/configGET.js @@ -22,7 +22,7 @@ class configGET extends Route { metaDescription: Util.config.metaDescription, metaKeywords: Util.config.metaKeywords, metaTwitterHandle: Util.metaTwitterHandle, - domain: process.env.domain + domain: process.env.DOMAIN } }); } |