mirror of
https://github.com/fleetbase/fleetbase.git
synced 2026-01-08 07:16:49 +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}`,
|
|
};
|
|
};
|