Make script link relative

This means I don't have to serve it from some context root, and so file:// URLs can work.
This commit is contained in:
Chandler Swift 2026-02-10 22:18:43 -06:00
parent 9f271e5163
commit ef61a96440
Signed by: chandlerswift
GPG key ID: A851D929D52FB93F

View file

@ -7,6 +7,6 @@
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<script type="module" src="src/main.tsx"></script>
</body>
</html>