fix: remove defer from app.js so functions available to inline scripts

This commit is contained in:
M1 2026-03-16 15:19:33 +04:00
parent 87c924d8d0
commit 4c5e426292
1 changed files with 1 additions and 1 deletions

View File

@ -6,6 +6,6 @@
<title>PingQL<%= it.title ? ` — ${it.title}` : '' %></title> <title>PingQL<%= it.title ? ` — ${it.title}` : '' %></title>
<script src="https://cdn.tailwindcss.com"></script> <script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="/dashboard/app.css"> <link rel="stylesheet" href="/dashboard/app.css">
<script src="/dashboard/app.js" defer></script> <script src="/dashboard/app.js"></script>
</head> </head>
<body class="bg-[#0a0a0a] text-gray-100 min-h-screen"> <body class="bg-[#0a0a0a] text-gray-100 min-h-screen">