feat: enable 32-bit Windows build support

This commit is contained in:
AbleKSaju
2025-06-24 15:44:09 +05:30
parent 95faaca825
commit 942ac33706
+10 -1
View File
@@ -48,7 +48,16 @@ const frappeBooksConfig = {
signDlls: true,
icon: 'build/icon.ico',
publish: ['github'],
target: ['nsis', 'portable'],
target: [
{
target: 'nsis',
arch: ['x64', 'ia32'],
},
{
target: 'portable',
arch: ['x64', 'ia32'],
},
],
},
nsis: {
oneClick: false,