aboutsummaryrefslogtreecommitdiffstats
path: root/gulpfile.babel.js
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-05-11 21:43:28 +0530
committerLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-05-11 22:07:51 +0530
commit7ce3165209d8e430ef61bc49490c11426f241c3e (patch)
tree5b9966e5b051b289bd567ff4a2f1f804d125270e /gulpfile.babel.js
parentSkip travis build if the PR is for i18n translations. (diff)
downloadferdium-app-7ce3165209d8e430ef61bc49490c11426f241c3e.tar.gz
ferdium-app-7ce3165209d8e430ef61bc49490c11426f241c3e.tar.zst
ferdium-app-7ce3165209d8e430ef61bc49490c11426f241c3e.zip
Fixing issue with icons being garbled due to misconfiguration of gulp
env var.
Diffstat (limited to 'gulpfile.babel.js')
-rw-r--r--gulpfile.babel.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/gulpfile.babel.js b/gulpfile.babel.js
index dff694b46..407bd3b31 100644
--- a/gulpfile.babel.js
+++ b/gulpfile.babel.js
@@ -24,7 +24,7 @@ dotenv.config();
24 24
25const uglify = composer(terser, console); 25const uglify = composer(terser, console);
26 26
27const isDevBuild = ((process.env.NODE_ENV || 'development').trim().toLowerCase() === 'development'); 27const isDevBuild = process.env.NODE_ENV === 'development';
28 28
29const getTargetEnv = isDevBuild ? 'development' : 'production'; 29const getTargetEnv = isDevBuild ? 'development' : 'production';
30 30