3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-06-07 16:05:01 +00:00

feat: add config-checker page

This commit is contained in:
Dragory 2025-05-23 01:23:16 +00:00
parent 83d35052c3
commit bca5d05d72
No known key found for this signature in database
11 changed files with 19158 additions and 1 deletions

36
config-checker/index.html Normal file
View file

@ -0,0 +1,36 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/src/style.css">
<title>Zeppelin config checker</title>
</head>
<body>
<div class="wrap">
<div class="section" style="flex: 1 1 auto">
<div class="title">
<h1>Config</h1>
</div>
<div class="content">
<div class="editor-wrap">
<div id="editor"></div>
</div>
</div>
</div>
<div class="section" style="flex: 0 0 max(300px, 40vh)">
<div class="title">
<h1>Errors</h1>
</div>
<div class="content">
<div class="errors-wrap">
<div id="errors"></div>
</div>
</div>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>