2023-09-22 06:43:25 +03:00
|
|
|
<!doctype html>
|
2023-09-05 01:27:33 +03:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
2023-10-29 22:02:07 +03:00
|
|
|
<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" />
|
2023-09-05 01:27:33 +03:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2023-09-26 11:14:56 +03:00
|
|
|
<title>Enso GUI</title>
|
2023-09-05 01:27:33 +03:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="app"></div>
|
2023-09-22 06:43:25 +03:00
|
|
|
<div id="enso-dashboard" class="enso-dashboard"></div>
|
2023-09-05 01:27:33 +03:00
|
|
|
<script type="module" src="/src/main.ts"></script>
|
2023-10-29 22:02:07 +03:00
|
|
|
<script>
|
|
|
|
// Workaround for Amplify issue:
|
|
|
|
// https://ui.docs.amplify.aws/vue/getting-started/troubleshooting
|
|
|
|
// Using a `define` to replace `global` with `globalThis` triggers a bug in Vite:
|
|
|
|
// https://github.com/vitejs/vite/blob/cb3ab5f465e0de340c4d8b82603e7ee1489b5b62/packages/vite/src/node/plugins/define.ts#L154-L159
|
|
|
|
window.global = window
|
|
|
|
window.process = {
|
|
|
|
env: { DEBUG: undefined },
|
|
|
|
}
|
|
|
|
var exports = {}
|
|
|
|
</script>
|
2023-09-05 01:27:33 +03:00
|
|
|
</body>
|
|
|
|
</html>
|