var ENV = 'test' // !! RELEASE BLOCKER: Change ENV to 'prod' and replace prod URL before publishing !! var API_BASES = { local: 'http://localhost:3000', test: 'https://1426323813-ilxkhlxf4p.ap-guangzhou.tencentscf.com', prod: 'https://replace-with-scf-prod-url' // TODO: replace with actual production SCF URL } var __DEV__ = ENV !== 'prod' module.exports = { ENV: ENV, API_BASE: API_BASES[ENV], __DEV__: __DEV__ }