baseApi.js 119 B

123456789
  1. let BaseApi = '/aip'
  2. if (process.env.NODE_ENV === 'production') {
  3. BaseApi = 'xxxxx'
  4. }
  5. export {
  6. BaseApi
  7. }