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

Commit

Permalink
fix(config): Default config dangling comma (#1570)
Browse files Browse the repository at this point in the history
Removes the dangling comma from the default configuration db.promise
setting.
  • Loading branch information
mleanos authored Oct 15, 2016
1 parent 517dc32 commit ef3b361
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/env/default.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = {
googleAnalyticsTrackingID: process.env.GOOGLE_ANALYTICS_TRACKING_ID || 'GOOGLE_ANALYTICS_TRACKING_ID'
},
db: {
promise: global.Promise,
promise: global.Promise
},
port: process.env.PORT || 3000,
host: process.env.HOST || '0.0.0.0',
Expand Down

0 comments on commit ef3b361

Please sign in to comment.