migrate call.html so it can be compiled with vite

This commit is contained in:
liamcottle
2024-12-16 18:02:28 +13:00
parent 01e76f0b7a
commit 05fa6cc1a5
4 changed files with 462 additions and 456 deletions

View File

@@ -18,8 +18,13 @@ export default {
rollupOptions: {
input: {
// we want to use /src/frontend/index.html as the entrypoint for this vite app
app: path.join(__dirname, "src", "frontend", "index.html"),
// we want to use /src/frontend/call.html as the entrypoint for the phone call app
call: path.join(__dirname, "src", "frontend", "call.html"),
},
},
},