Newer
Older
eryuan_iris_temperature_front / config / dev.env.js
dutingting on 15 May 777 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://192.168.8.102:20005"'
  // BASE_API: '"http://192.168.8.108:20005"'
  // BASE_API: '"http://111.198.10.15:11638"'
  // BASE_API: '"http://192.168.164.127:20007/"' // 颖捷本地
  BASE_API: '"http://192.168.83.37:20005/"' // 文豪本地
  // BASE_API: '"http://192.168.21.54:20005"' // 可鑫本地
  // BASE_API: '"http://192.168.21.33:8080/laser_ptz"' // 可鑫本地
});