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?
Add the --ia32 flag to the build command:
npm run electron:build -- --ia32
or
yarn electron:build --ia32
Add the
--ia32flag to the build command:npm run electron:build -- --ia32or
yarn electron:build --ia32
@nklayman, It worked perfectly, but please how is it possible to make it in vue.config.js
Most helpful comment
Add the
--ia32flag to the build command:or