mirror of https://github.com/sunface/rust-course
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.9 KiB
44 lines
1.9 KiB
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="theme-color" content="#000000" />
|
|
|
|
<!-- prevent caching of this HTML by any server, Go or otherwise -->
|
|
<meta http-equiv="cache-control" content="max-age=0" />
|
|
<meta http-equiv="cache-control" content="no-cache" />
|
|
<meta http-equiv="expires" content="0" />
|
|
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
|
|
<meta http-equiv="pragma" content="no-cache" />
|
|
|
|
<!-- NOTE: The document MUST have a <base> element. package.json#homepage is set to "." as part of resolving https://github.com/jaegertracing/jaeger-ui/issues/42 and therefore static assets are linked via relative URLs. This will break on many document URLs, e.g. /trace/abc, unless a valid base URL is provided. The base href defaults to "/" but the query-service can inject an override. -->
|
|
<base href="/" data-inject-target="BASE_URL" />
|
|
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
|
|
<title>APM UI</title>
|
|
</head>
|
|
<body>
|
|
<link rel="stylesheet/less" type="text/css" href="/color.less" />
|
|
<script>
|
|
window.less = {
|
|
async: false,
|
|
env: 'production'
|
|
};
|
|
</script>
|
|
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/less.js/2.7.2/less.min.js"></script>
|
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
<div id="apm-ui-root"></div>
|
|
|
|
<!--
|
|
This HTML file is a template.
|
|
If you open it directly in the browser, you will see an empty page.
|
|
|
|
You can add webfonts, meta tags, or analytics to this file.
|
|
The build step will place the bundled scripts into the <body> tag.
|
|
|
|
To begin the development, run `npm start` in this folder.
|
|
To create a production bundle, use `npm run build`.
|
|
-->
|
|
</body>
|
|
</html>
|