Hi, im moving my app from vue cli3 + vuetify where in have two entry points.
I’m using: https://cli.vuejs.org/config/#pages
Is it possible to configure it with quasar cli?
My vue.config.js file looks like that:
module.exports = {
pwa: {
name: 'app'
},
devServer: {
port: 5004
},
pages: {
app: {
entry: 'src/main.js',
template: 'public/index.html',
filename: 'index.html',
excludeChunks: ['silent-refresh']
},
'silent-refresh': {
entry: 'src/silent-refresh.js',
template: 'public/silent-refresh.html',
filename: 'silent-refresh.html',
excludeChunks: ['app']
}
}
}
Thanks for any tips