digital-turntable/index.html
Chandler Swift ef61a96440
Make script link relative
This means I don't have to serve it from some context root, and so file:// URLs can work.
2026-02-10 22:19:06 -06:00

12 lines
303 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Digital Turntable</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="src/main.tsx"></script>
</body>
</html>