48 lines
2.0 KiB
HTML
48 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<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>event-ui</title>
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/font@latest/css/materialdesignicons.min.css">
|
|
<!--<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900" rel="stylesheet">-->
|
|
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900" rel="stylesheet">
|
|
<link href="https://cdn.jsdelivr.net/npm/@mdi/font@3.x/css/materialdesignicons.min.css" rel="stylesheet">
|
|
<link href="https://cdn.jsdelivr.net/npm/vuetify@2.x/dist/vuetify.min.css" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/css?family=Material+Icons" rel="stylesheet">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.10/lodash.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<!-- built files will be auto injected -->
|
|
</body>
|
|
<script>
|
|
|
|
$.ajax({
|
|
url: "./static/env.txt",
|
|
type: "get",
|
|
async: false,
|
|
success: function (data) {
|
|
var lines = data.split('\n');
|
|
$.each(lines, function (i, line) {
|
|
// console.log(line);
|
|
if (line && line.indexOf('VUE_APP_API_HOST=') == 0) {
|
|
api_host = line.split('=')[1];
|
|
window.API_HOST = api_host;
|
|
// console.log(window.API_HOST);
|
|
}
|
|
|
|
});
|
|
},
|
|
error: function () {
|
|
console.log('Failed to get env');
|
|
}
|
|
});
|
|
</script>
|
|
</html>
|