UNPKG

runtime-env-cra

Version:

A runtime environment handler for create-react-apps

13 lines (10 loc) 254 B
const constants = { DEVELOPMENT: 'development', runtimeConfigPath: 'window.__RUNTIME_CONFIG__', }; const generateJSON = (config) => `${constants.runtimeConfigPath} = ${JSON.stringify(config)};`; module.exports = { generateJSON, constants, };