// 环境变量配置文件 const envConfig = { development: { NODE_ENV: 'development', SERVER: 'https://feiniaotech-dev.sysuimars.cn/', PYSERVER: 'https://birds-api-1-2.sysuimars.cn/', MOCK: 'True' }, local: { NODE_ENV: 'local', SERVER: 'http://127.0.0.1:81/', PYSERVER: 'https://birds-api-1-2.sysuimars.cn/', MOCK: 'True' }, loc: { NODE_ENV: 'local', SERVER: 'http://127.0.0.1:81/', PYSERVER: 'https://birds-api-1-2.sysuimars.cn/', MOCK: 'True' }, production: { NODE_ENV: 'production', SERVER: 'https://feiniaotech-dev.sysuimars.cn/', PYSERVER: 'https://birds-api-1-2.sysuimars.cn/', MOCK: 'False' } } module.exports = envConfig