WiX MSI
Create an MSI file for your Electron app on Windows using Electron Forge.
Requirements
choco install wixtoolset --version=3.14.0Installation
npm install --save-dev @electron-forge/maker-wixUsage
module.exports = {
makers: [
{
name: '@electron-forge/maker-wix',
config: {
language: 1033,
manufacturer: 'My Awesome Company'
}
}
]
};Debugging
Last updated
Was this helpful?