config.js 406 B

1234567891011121314151617181920212223
  1. const config = {
  2. /**
  3. * api请求基础路径
  4. */
  5. base_url: import.meta.env.VITE_BASE_URL,
  6. /**
  7. * 接口成功返回状态码
  8. */
  9. result_code: 200,
  10. /**
  11. * 接口请求超时时间
  12. */
  13. request_timeout: 30000,
  14. /**
  15. * 默认接口请求类型
  16. * 可选值:application/x-www-form-urlencoded multipart/form-data
  17. */
  18. default_headers: 'application/json'
  19. }
  20. export { config }