Use absolute paths for resources so that the links work when Vite is serving these at root instead of /auth/

This commit is contained in:
Leo Vasanko
2025-12-10 18:30:45 +00:00
parent ccbe0f2f6f
commit c89fc71ebb
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -7,6 +7,6 @@
</head>
<body>
<div id="admin-app"></div>
<script type="module" src="./main.js"></script>
<script type="module" src="/auth/admin/main.js"></script>
</body>
</html>
+1 -1
View File
@@ -7,6 +7,6 @@
</head>
<body>
<div id="app"></div>
<script type="module" src="main.js"></script>
<script type="module" src="/auth/main.js"></script>
</body>
</html>