'use strict' const merge = require('webpack-merge') const prodEnv = require('./prod.env') const isDev = false; const ipAddresses = isDev?"weberp.xlyprint.cn":"127.0.0.1:8080"; //window.location.host; module.exports = merge(prodEnv, { NODE_ENV: '"development"', BASE_API: '"http://'+ipAddresses+'/xlyReport"', // BASE_API: '"http://weberp.xlyprint.cn/xlyReport"', //API_WS: '"ws://127.0.0.1:8080/api/websocket"' })