easydiffusion/ui/frontend/dist/index.html

17 lines
506 B
HTML
Raw Normal View History

2022-09-14 16:48:46 +02:00
<!DOCTYPE html>
<html lang="en">
2022-09-14 20:49:23 +02:00
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2022-09-17 20:18:05 +02:00
<meta name="color-scheme" content="dark light" />
2022-09-14 20:49:23 +02:00
<title>Stable Diffusion UI</title>
<script type="module" crossorigin src="/index.js"></script>
<link rel="stylesheet" href="/index.css">
</head>
<body>
<!-- The react app entry point. Currently no ui just poc importing and logging -->
<div id="root"></div>
</body>
2022-09-14 16:48:46 +02:00
</html>