komga/next-ui/index.html
2025-11-28 16:05:22 +08:00

32 lines
796 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
href="/favicon.ico"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>Komga</title>
<script th:inline="javascript">
/*<![CDATA[*/
window.resourceBaseUrl = /*[(${"'" + baseUrl + "'"})]*/ '/'
/*]]>*/
</script>
<script>
window.buildUrl = (filename) => {
return `${window.resourceBaseUrl}${filename}`
}
</script>
</head>
<body>
<div id="app"></div>
<script
type="module"
src="/src/main.ts"
></script>
</body>
</html>