refactor: move HTML files to src/, use vite HTML entry points

- Move welcome.html to src/
- Use vite HTML inputs instead of static copy for offscreen.html and welcome.html
- Source HTML references .ts, vite transforms to .js
- Update paths in background.ts to src/
This commit is contained in:
Tommy D. Rossi
2026-01-23 17:19:14 +01:00
parent c9768965b5
commit b52928cc90
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -4,6 +4,6 @@
<title>Playwriter Offscreen</title>
</head>
<body>
<script src="./offscreen.js" type="module"></script>
<script src="./offscreen.ts" type="module"></script>
</body>
</html>