open/app/index.html

27 lines
521 B
HTML
Raw Normal View History

2025-02-28 19:15:32 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<link href="/favicon.ico" rel="icon">
<meta content="width=device-width,initial-scale=1.0,user-scalable=0" name="viewport">
<style>
body {
height: auto !important;
min-height: 100%;
}
body.dark {
background-color: #141414;
color: #fff;
}
#app {
height: 100%;
}
</style>
<title>Nginx UI</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>