mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-06 05:19:05 -05:00
29 lines
654 B
HTML
29 lines
654 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Yaak App</title>
|
|
<!-- <script src="http://localhost:8097"></script>-->
|
|
<style>
|
|
body {
|
|
background-color: white;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
background-color: black;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
<div id="cm-portal" class="cm-portal"></div>
|
|
<div id="react-portal"></div>
|
|
<div id="radix-portal" class="cm-portal"></div>
|
|
<script type="module" src="/src-web/main.tsx"></script>
|
|
</body>
|
|
</html>
|