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:
2025-12-10 18:30:45 +00:00
parent 9930608359
commit 091f20a666
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -7,6 +7,6 @@
</head> </head>
<body> <body>
<div id="admin-app"></div> <div id="admin-app"></div>
<script type="module" src="./main.js"></script> <script type="module" src="/auth/admin/main.js"></script>
</body> </body>
</html> </html>
+1 -1
View File
@@ -7,6 +7,6 @@
</head> </head>
<body> <body>
<div id="app"></div> <div id="app"></div>
<script type="module" src="main.js"></script> <script type="module" src="/auth/main.js"></script>
</body> </body>
</html> </html>