35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
|
|
<link rel="icon" href="<%= BASE_URL %>favicon.ico" />
|
|
<title><%= htmlWebpackPlugin.options.title %></title>
|
|
</head>
|
|
<body>
|
|
<noscript>
|
|
<strong
|
|
>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to
|
|
continue.</strong
|
|
>
|
|
</noscript>
|
|
|
|
<div id="app"></div>
|
|
<!-- built files will be auto injected -->
|
|
<script>
|
|
let host = process.env.VUE_APP_QIEZI_HOST;
|
|
console.log("qieziHost:" + host);
|
|
if (host && host.trim().length > 0) {
|
|
window.qieziStatisticHost = host;
|
|
}
|
|
let key = process.env.VUE_APP_QIEZI_KEY;
|
|
console.log("qieziKey:" + key);
|
|
if (key && key.trim().length > 0) {
|
|
window.qieziStatisticKey = key;
|
|
}
|
|
</script>
|
|
<script src="qiezijs/1.0/qiezi_statistic.js" type="text/javascript"></script>
|
|
</body>
|
|
</html>
|