index.html 886 Bytes
<!--
 * @Description: 
 * @Autor: renchao
 * @LastEditTime: 2023-05-30 15:08:51
-->
<!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>
    <%= webpackConfig.name %>
  </title>
</head>
<script>
  window.baseUrl = location.origin || location.protocol + '//' + location.host
  const authorization = "bearer ATT-7-TiYJVcoDnfhNGs160E6MbQ-QA9Ot3Tby"
  fetch('<%= BASE_URL %>config.json')
    .then(response => response.json())
    .then(config => {
      window.config = config
    });
</script>

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

</html>