24 lines
905 B
HTML
24 lines
905 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
|
|
<title>{{ app_name }}</title>
|
|
<script src="/static/js/tailwind.js"></script>
|
|
<script>tailwind.config = { darkMode: 'class' };</script>
|
|
<script src="/static/js/vue.global.prod.js"></script>
|
|
<script>window.APP_CONFIG = { appName: "{{ app_name }}" };</script>
|
|
<style>
|
|
html { -webkit-tap-highlight-color: transparent; }
|
|
::-webkit-scrollbar { width: 8px; height: 8px; }
|
|
::-webkit-scrollbar-thumb { background: rgba(100,116,139,.3); border-radius: 4px; }
|
|
[v-cloak] { display: none; }
|
|
</style>
|
|
</head>
|
|
<body class="bg-slate-50 dark:bg-slate-950 text-slate-800 dark:text-slate-200 antialiased">
|
|
<div id="app"></div>
|
|
<script src="/static/js/api.js"></script>
|
|
<script src="/static/js/app.js"></script>
|
|
</body>
|
|
</html>
|