summaryrefslogtreecommitdiff
path: root/src/config.js
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2019-10-31 15:52:06 +0200
committerYuval Adam <_@yuv.al>2019-10-31 15:52:16 +0200
commit5f06c47fdbae41ff40657e1d4da7253aea547a41 (patch)
treefcebaf6c70a634f0025e7be645f4dcd4da27c885 /src/config.js
parente50f79b12e17dc8acb2795ffdbbff7177a00ddbd (diff)
Change config to support netlify deployment as well
Diffstat (limited to 'src/config.js')
-rw-r--r--src/config.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.js b/src/config.js
index d86264b..f74382c 100644
--- a/src/config.js
+++ b/src/config.js
@@ -1,6 +1,6 @@
const hostname = window && window.location && window.location.hostname;
-const PRODUCTION = hostname.includes("geshem.space");
+const PRODUCTION = hostname.includes("geshem");
const IMAGES_BASE_URL = PRODUCTION ? "https://imgs.geshem.space" : "";