Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
fix(config): config.app.domain -> config.domain (#1572)
Browse files Browse the repository at this point in the history
Issue brought up by @19r3ka

Fixes #1506
  • Loading branch information
sujeethk authored and mleanos committed Oct 16, 2016
1 parent ef3b361 commit 4dd8669
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.'));
}
};
Expand Down

0 comments on commit 4dd8669

Please sign in to comment.