mirror of
https://github.com/enso-org/enso.git
synced 2024-11-22 20:56:39 +03:00
078260d8e7
- Fixes #8300 - Fixes Geo Map visualization being completely broken - Fixes Mapbox attribution icon in bottom right being invisible - Fixes Mapbox attribution button being unclickable # Important Notes None
29 lines
886 B
HTML
29 lines
886 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
|
|
<link
|
|
rel="stylesheet"
|
|
type="text/css"
|
|
crossorigin
|
|
href="https://api.mapbox.com/mapbox-gl-js/v2.1.1/mapbox-gl.css"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
type="text/css"
|
|
crossorigin
|
|
href="https://fonts.cdnfonts.com/css/dejavu-sans-mono"
|
|
/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Enso GUI</title>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<div id="enso-dashboard" class="enso-dashboard"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|