config.js 697 B

123456789101112131415161718192021
  1. const CONFIG = {
  2. // 开发环境配置
  3. //https://bytesailing.cn/api/storage/cloudApi
  4. development: {
  5. assetsPath: '/static', // 静态资源路径
  6. baseUrl: 'https://cfm.bytesail.cn', // 后台接口请求地址
  7. hostUrl: '', // H5地址(前端运行地址)
  8. websocketUrl: '', // websocket服务端地址
  9. weixinAppId: '' // 微信公众号appid
  10. },
  11. // 生产环境配置
  12. production: {
  13. assetsPath: '/static', // 静态资源路径
  14. baseUrl: 'https://cfm.bytesail.cn', // 后台接口请求地址
  15. hostUrl: '', // H5地址(前端运行地址)
  16. websocketUrl: '', // websocket服务端地址
  17. weixinAppId: '' // 微信公众号appid
  18. }
  19. };
  20. export default CONFIG[process.env.NODE_ENV];