mirror of
https://github.com/szimek/sharedrop.git
synced 2026-06-05 21:02:47 +08:00
9 lines
233 B
JavaScript
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,
|
|
};
|
|
};
|