车辆管理系统-后台管理系统web
spring
3 天以前 32f9807e62a4932c5b6873af32343f10c2fbfa12
src/settings.js
@@ -8,13 +8,16 @@
// | Author: CMS Team <admin@CMS.com>
// +----------------------------------------------------------------------
// 请求接口地址 如果没有配置自动获取当前网址路径
const VUE_APP_API_URL = process.env.VUE_APP_BASE_API || `${location.origin}/api/`;
// 请求接口地址:
// - 浏览器运行时可使用 location.origin
// - Node 构建/加载阶段(vue-cli-service 加载 vue.config.js)没有 location,必须兜底
const VUE_APP_API_URL =
  process.env.VUE_APP_BASE_API || "http://1.15.17.182:9031/api/";
module.exports = {
  // 接口请求地址
  apiBaseURL: VUE_APP_API_URL,
  title: 'CMS',
  title: "CMS",
  /**
   * @type {boolean} true | false
@@ -46,5 +49,5 @@
   * The default is only used in the production env
   * If you want to also use it in dev, you can pass ['production', 'development']
   */
  errorLog: 'production'
}
  errorLog: "production",
};