From 58e3b39fce6591ddde9c408efede3ff27af69fbb Mon Sep 17 00:00:00 2001 From: Paul Graffam Date: Sun, 25 Feb 2018 19:31:59 -0500 Subject: [PATCH] Set to triple equals --- src/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/app.js b/src/js/app.js index c3cd116..6e5e2a1 100644 --- a/src/js/app.js +++ b/src/js/app.js @@ -3,7 +3,7 @@ import Detector from './utils/detector'; import Main from './app/main'; // Check environment and set the Config helper -if(__ENV__ == 'dev') { +if(__ENV__ === 'dev') { console.log('----- RUNNING IN DEV ENVIRONMENT! -----'); Config.isDev = true;