1
0
Fork 0
mirror of synced 2024-06-28 11:00:55 +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 91d9f44aeb
commit 56f1170ae9

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
},
}