mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-03-05 11:41:01 +01:00
fix(config): Default config dangling comma (#1570)
Removes the dangling comma from the default configuration db.promise setting.
This commit is contained in:
2
config/env/default.js
vendored
2
config/env/default.js
vendored
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user