Changed the main entry file in Vite's rollupOptions from 'app.html' to 'index.html'.

This commit is contained in:
martin 2023-07-24 20:47:55 +02:00
parent bfcb860cfc
commit 7656d35227

View File

@ -10,7 +10,7 @@ export default defineConfig({
target: 'esnext',
rollupOptions: {
input: {
main: "app.html",
main: "index.html",
}
}
},