Vue-cli-plugin-electron-builder: How to build app for Windows 32bit version?

Created on 27 Apr 2019  路  3Comments  路  Source: nklayman/vue-cli-plugin-electron-builder

I am using Windows 64bit for development, after I execute npm run electron:build, it produce .exe file for 64bit system. How to build for 32bit system?

Most helpful comment

Add the --ia32 flag to the build command:

npm run electron:build -- --ia32

or

yarn electron:build --ia32

All 3 comments

Add the --ia32 flag to the build command:

npm run electron:build -- --ia32

or

yarn electron:build --ia32

Add the --ia32 flag to the build command:

npm run electron:build -- --ia32

or

yarn electron:build --ia32

@nklayman, It worked perfectly, but please how is it possible to make it in vue.config.js

Was this page helpful?
0 / 5 - 0 ratings

Related issues

HarlanGitHub picture HarlanGitHub  路  4Comments

iamazik picture iamazik  路  5Comments

HeiShanLaoYao889 picture HeiShanLaoYao889  路  5Comments

getflourish picture getflourish  路  5Comments

mrin9 picture mrin9  路  6Comments