Blame view

public/index.html 885 Bytes
1 2 3
<!--
 * @Description: 
 * @Autor: renchao
4
 * @LastEditTime: 2023-05-16 09:50:40
5
-->
赵千 committed
6 7
<!DOCTYPE html>
<html>
8 9 10 11 12 13 14

<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">
renchao@pashanhoo.com committed
15
  <link rel="shortcut icon" type="image/x-icon" href="./favicon.ico" />
16 17 18 19
  <title>
    <%= webpackConfig.name %>
  </title>
</head>
20
<script>
21 22
  window.baseUrl = location.origin || location.protocol + '//' + location.host
  const authorization = "bearer AT-4-MxSrO29Coe7VTazx8uuixtqqgO-hvCB6"
renchao@pashanhoo.com committed
23
  fetch('<%= BASE_URL %>config.json')
24 25 26 27 28
    .then(response => response.json())
    .then(config => {
      window.config = config
    });
</script>
29 30 31 32 33

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

34
</html>