// Production: change to 'prod' const ENV = 'test' const API_BASES = { local: 'http://localhost:3000', test: 'https://api.vsai.net.cn', prod: 'https://api.vsai.net.cn' } export { ENV, API_BASES } export default { ENV, API_BASE: API_BASES[ENV] }