mirror of
https://github.com/enso-org/enso.git
synced 2024-11-24 00:27:16 +03:00
28655e13d7
#### Tl;dr Closes: enso-org/cloud-v2#1185 This PR changes endpoints according to the comment left by @PabloBuchu: https://github.com/enso-org/cloud-v2/issues/1185#issuecomment-2114606101 #### This Change: Changes endpoint names and fixes subscription flow ---
24 lines
834 B
HTML
24 lines
834 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"
|
|
/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Enso</title>
|
|
</head>
|
|
<body>
|
|
<div id="enso-dashboard" class="enso-dashboard"></div>
|
|
<div id="enso-chat" class="enso-chat"></div>
|
|
<div id="enso-portal-root" class="enso-portal-root"></div>
|
|
<script type="module" src="/src/entrypoint.ts"></script>
|
|
</body>
|
|
</html>
|