add the build for multiple files

This commit is contained in:
Julien Calixte
2023-07-11 21:11:57 +02:00
parent 98637bb117
commit 33643d35b6

10
vite.config.ts Normal file
View File

@@ -0,0 +1,10 @@
export default {
build: {
rollupOptions: {
input: {
index: "index.html",
"feature-flow": "feature-flow.html",
},
},
},
}