mirror of
https://github.com/fleetbase/fleetbase.git
synced 2025-12-19 22:27:22 +00:00
13 lines
246 B
JavaScript
13 lines
246 B
JavaScript
/* eslint-env node */
|
|
|
|
'use strict';
|
|
|
|
module.exports = function (env) {
|
|
return {
|
|
clientAllowedKeys: ['API_HOST'],
|
|
fastbootAllowedKeys: [],
|
|
failOnMissingKey: false,
|
|
path: `./environments/.env.${env}`,
|
|
};
|
|
};
|