1
0
Fork 0
mirror of synced 2024-06-27 18:40:42 +12:00

Fixing an issue with env variables not getting set correctly.

This commit is contained in:
Michael Drury 2020-10-28 22:24:44 +00:00
parent 0d78dd0cf5
commit 3df7f06226

View file

@ -36,6 +36,6 @@ module.exports = {
DEPLOYMENT_DB_URL: process.env.DEPLOYMENT_DB_URL,
_set(key, value) {
process.env[key] = value
exports[key] = value
module.exports[key] = value
},
}