sharedrop/config/dotenv.js
2020-09-25 14:35:29 +02:00

9 lines
233 B
JavaScript

module.exports = function () {
return {
clientAllowedKeys: ['FIREBASE_URL'],
// Fail build when there is missing any of clientAllowedKeys environment variables.
// By default false.
failOnMissingKey: false,
};
};