From 4dd866992a8a5cd1046216b042845e41790f50b8 Mon Sep 17 00:00:00 2001 From: Sujeeth Date: Sat, 15 Oct 2016 21:50:10 -0400 Subject: [PATCH] fix(config): config.app.domain -> config.domain (#1572) Issue brought up by @19r3ka Fixes #1506 --- config/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.js b/config/config.js index c73f3d8d90..ee06bc6e38 100644 --- a/config/config.js +++ b/config/config.js @@ -71,7 +71,7 @@ var validateEnvironmentVariable = function () { /** Validate config.domain is set */ var validateDomainIsSet = function (config) { - if (!config.app.domain) { + if (!config.domain) { console.log(chalk.red('+ Important warning: config.domain is empty. It should be set to the fully qualified domain of the app.')); } };