mirror of
https://github.com/gotson/komga.git
synced 2025-12-06 16:42:24 +01:00
32 lines
796 B
HTML
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>
|