index.html 1.14 KB
<!--
 * @Description:
 * @Autor: renchao
 * @LastEditTime: 2023-06-20 09:56:19
-->
<!DOCTYPE html>
<html>

<head>
  <meta charset="utf-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  <meta name="renderer" content="webkit">
  <meta name="referrer" content="no-referrer" />
  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
  <link rel="shortcut icon" type="image/x-icon" href="./favicon.ico" />
  <title>
  </title>
</head>
<script>
  window._config = {
    // 是否微服务模式,业务系统根据需要读取,此demo未使用
    cloudEnable: false,
    baseUrl: location.origin || location.protocol + '//' + location.host,
    // 是否启用单点登录
    casEnable: false,
    // cas 基地址
    casBaseURL: 'http://192.168.2.38/cas',
    services: {
      // 配置到 contextPath 前一级
      management: 'http://192.168.2.38',
      business: 'http://localhost:7001'
    }
  }
  fetch('<%= BASE_URL %>config.json')
    .then(response => response.json())
    .then(config => {
      window.config = config
    })
</script>

<body>
  <div id="app"></div>
</body>

</html>