(vite) feature flow as a VueJS app

This commit is contained in:
Julien Calixte
2023-07-21 00:25:17 +02:00
parent 64eaf8dfd8
commit 390f34012e
10 changed files with 1783 additions and 126 deletions

View File

@@ -1,10 +1,20 @@
import vue from '@vitejs/plugin-vue'
import path from 'path'
export default {
plugins: [vue()],
build: {
rollupOptions: {
input: {
index: "index.html",
"feature-flow": "feature-flow.html",
},
},
index: 'index.html',
'feature-flow': 'feature-flow.html'
}
}
},
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
'node-fetch': 'isomorphic-fetch'
}
}
}