gradio/js/lite/lite.html
pngwn efdc3231a7
Initial SSR refactor (#9102)
* changes

* asd

* fix tests

* fix lint

* fix ts

* fix ts

* cleanup

* cleanup

* fix

* Apply suggestions from code review

Co-authored-by: Yuichiro Tachibana (Tsuchiya) <t.yic.yt@gmail.com>

* fix

* add changeset

* fix gitignore

* fix changeset

* fix lockfile

* format

* fix

* add changeset

* githunore

* kit bopilerplate

* add changeset

* fix website

* add changeset

---------

Co-authored-by: Yuichiro Tachibana (Tsuchiya) <t.yic.yt@gmail.com>
Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
2024-08-14 15:17:36 +01:00

36 lines
834 B
HTML

<!doctype html>
<!-- An entrypoint for the Wasm version development -->
<html style="margin: 0; padding: 0; height: 100%">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no, maximum-scale=1"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link
rel="preconnect"
href="https://fonts.gstatic.com"
crossorigin="anonymous"
/>
<script type="module" src="./src/index.ts"></script>
</head>
<body
style="
margin: 0;
padding: 0;
height: 100%;
display: flex;
flex-direction: column;
"
>
<div style="flex-grow: 1; overflow: scroll; position: relative">
<div id="gradio-app" style="min-height: 100%"></div>
</div>
<div id="dev-app" style="height: 300px; position: relative"></div>
</body>
</html>