easydiffusion/ui/frontend/build_src/index.html

15 lines
447 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>
</head>
<body>
<!-- The react app entry point. Currently no ui just poc importing and logging -->
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
2022-09-14 16:48:46 +02:00
</html>