Blame view

report-ui/config/dev.env.js 344 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"',
7 8
  BASE_API: '"http://192.168.0.75:9095"',
  MONITOR_GATEWAY: '"http://192.168.0.75:8080"'
9 10 11
  // BASE_API: '"http://192.168.1.50:9095"',
  // MONITOR_GATEWAY: '"http://192.168.1.50:8080"'
王涛 authored
12
})