DSDSWeb/config/dev.env.js

34 lines
2.1 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

'use strict'
const merge = require('webpack-merge')
const prodEnv = require('./prod.env')
module.exports = merge(prodEnv, {
NODE_ENV: '"development"',
// 测试环境1
// VUE_APP_BASE_API: '"/service"',
// VUE_APP_FULL_API: '"http://10.10.150.160:5555"',
// VUE_APP_BASE_API_FRONT: '"http://10.10.150.128:8080/satellitePub/pub/index.html"',
// VUE_APP_FILE_API: '"http://10.10.150.160:5555/archives"',
// VUE_APP_FLAG_API: '"http://10.10.150.237/login?service=http://10.10.150.160:5555/api/login/cas&sign="',
// VUE_APP_CAS_LOGIN_FRONT: '"http://10.10.150.237/login?service=http://10.10.150.160:5555/api/login/cas?sign=asos_client"',
// VUE_APP_CAS_LOGIN_BACK: '"http://10.10.150.237/login?service=http://10.10.150.160:5555/api/login/cas?sign=asos_service"',
// VUE_APP_CAS_LOGOUT_URL_FRONT: '"http://10.10.150.160:5555/api/login/validate?sign=asos_client"',
// VUE_APP_CAS_LOGOUT_URL_BACK: '"http://10.10.150.160:5555/api/login/validate?sign=asos_service"',
// VUE_APP_API_URL: '"http://10.10.150.237/"'
VUE_APP_BASE_API: '"/api"',
/** 仅参航科学家报表;与生产一致直连 https服务端 CORS 已放开,避免本地代理 404 */
VUE_APP_UNIT_MEMBER_REPORT_BASE: '"https://weixin.bdsmart.cn/ds1"',
// VUE_APP_BASE_APIURL: '"http://ds2.hzzxq.com/api2"',
VUE_APP_BASE_APIURL: '"http://test.gopmas.com/ds"',
VUE_APP_FULL_API: '"http://10.10.151.5:5555"',
VUE_APP_BASE_API_FRONT: '"http://10.10.150.128:8080/satellitePub/pub/index.html"',
VUE_APP_FILE_API: '"http://10.10.151.5:5555/archives"',
VUE_APP_FLAG_API: '"http://10.10.150.237/login?service=http://10.10.151.5:5555/api/login/cas&sign="',
VUE_APP_CAS_LOGIN_FRONT: '"http://10.10.150.237/login?service=http://10.10.151.5:5555/api/login/cas?sign=asos_client"',
VUE_APP_CAS_LOGIN_BACK: '"http://10.10.150.237/login?service=http://10.10.151.5:5555/api/login/cas?sign=asos_service"',
VUE_APP_CAS_LOGOUT_URL_FRONT: '"http://10.10.151.5:5555/api/login/validate?sign=asos_client"',
VUE_APP_CAS_LOGOUT_URL_BACK: '"http://10.10.151.5:5555/api/login/validate?sign=asos_service"',
VUE_APP_API_URL: '"http://10.10.150.237/"'
})