Changed not to use NODE_ENV variable.

This commit is contained in:
Naida Vatric
2020-01-31 22:47:47 +01:00
parent b9122f8f00
commit 712cde1632
2 changed files with 4 additions and 1 deletions

View File

@@ -9,7 +9,7 @@ const APP_URL =
? process.env.APP_URL || "http://market-alarm"
: process.env.APP_URL || `${APP_BASE_URL}:${APP_PORT}`;
const STAGING = process.env.NODE_ENV !== "production";
const STAGING = process.env.SETTINGS !== "production";
const DEFAULT_TIMEZONE = "Europe/Sarajevo";