Blame view

report-ui/config/dev.env.js 534 Bytes
王涛 authored
1 2 3 4 5 6
'use strict'
const merge = require('webpack-merge')
const prodEnv = require('./prod.env')

module.exports = merge(prodEnv, {
  NODE_ENV: '"development"',
鲁尚清 authored
7 8 9
  /*BASE_API: '"http://192.168.0.59:9095"',
  MONITOR_GATEWAY: '"http://192.168.0.59:8080"'*/
  /*BASE_API: '"http://192.168.0.75:9095"',
10
  MONITOR_GATEWAY: '"http://192.168.0.75:8080"'*/
鲁尚清 authored
11 12
  BASE_API: '"https://192.168.0.248:8089"',
  MONITOR_GATEWAY: '"https://192.168.0.248:8080"'
13 14
  /*BASE_API: '"http://192.168.1.52:8089"',
  MONITOR_GATEWAY: '"http://192.168.1.52:8080"'*/
15
王涛 authored
16
})