Skip to content

Commit

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

Fixes meanjs#1506
  • Loading branch information
sujeethk committed Oct 15, 2016
1 parent ef3b361 commit a2d8add
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 a2d8add

Please sign in to comment.