You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Almost all of the renderer process config is handled by vue-cli, just like your regular build. You will have to set it through the chainWebpack option in vue.config.js. I think this will work, but I am not sure (will test later today):
// vue.config.jsmodule.exports={chainWebpack: (config)=>{config.entry('app').clear().add('path to entry file')}}
brunogaspar, lizhongyue248, wsqtxm and davidalpert
Activity
nklayman commentedon Aug 13, 2018
Almost all of the renderer process config is handled by vue-cli, just like your regular build. You will have to set it through the
chainWebpack
option invue.config.js
. I think this will work, but I am not sure (will test later today):brunogaspar commentedon Aug 13, 2018
Thanks, that did the trick!