fix: remove defer from app.js so functions available to inline scripts
This commit is contained in:
parent
87c924d8d0
commit
4c5e426292
|
|
@ -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">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue