fix(config): Default config dangling comma (#1570)

Removes the dangling comma from the default configuration db.promise
setting.
This commit is contained in:
Michael Leanos
2016-10-15 14:07:30 -07:00
committed by GitHub
parent 517dc32b69
commit ef3b361c09

View File

@@ -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',