Newer
Older
qd_cnooc_front / config / dev.env.js
[wangxitong] on 17 Mar 2022 657 bytes 添加三级分区
'use strict'
//引入webpack的merge插件,用来合并对象,也就是配置文件用的,相同的选项会被覆盖
const merge = require('webpack-merge')
//导入prod.env.js配置文件
const prodEnv = require('./prod.env')
// 将两个配置对象合并,最终结果是 NODE_ENV:‘"development"'
module.exports = merge(prodEnv, {
  NODE_ENV: '"development"',
  // BASE_API: '"http://42.81.160.165:2022/smartwell"'
  // BASE_API: '"http://111.198.10.15:11304"'
  // BASE_API: '"http://111.198.10.15:11643"'
  // BASE_API: '"http://111.198.10.15:11409/smartwell"' //可以用
  BASE_API: '"http://192.168.43.66:11643/smartwell"' //彭先洪
})