// Production: change to 'prod' to disable debug buttons and mock endpoints var ENV = 'prod' var API_BASES = { local: 'http://localhost:3000', test: 'https://api.vsai.net.cn', prod: 'https://api.vsai.net.cn' } var __DEV__ = ENV !== 'prod' module.exports = { ENV: ENV, API_BASE: API_BASES[ENV], __DEV__: __DEV__ }