gui/svelte/src/app.html
Neil 6ad452331b
flatten repo: remove pnpm workspace + merge workspaces (#688)
* remove unused components

* remove pnpm

* implementation of local dev pantry setup (#689)
2023-06-30 10:33:39 +08:00

19 lines
398 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width" />
%sveltekit.head%
<style>
html {
overflow: hidden;
width: 100vw;
height: 100vh;
}
</style>
</head>
<body>
<div>%sveltekit.body%</div>
</body>
</html>