You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
buster/src/utils/config.js

10 lines
300 B
JavaScript

const targetEnv = process.env.TARGET_ENV;
const enableContributions = process.env.ENABLE_CONTRIBUTIONS === 'true';
const storageRevisions = {local: process.env.STORAGE_REVISION_LOCAL};
const clientAppVersion = '0.3.0';
export {targetEnv, enableContributions, storageRevisions, clientAppVersion};