I just built an MSI package for windows from a "he...
# getting-started
i
I just built an MSI package for windows from a "hello world" app using #compose . After installing the app, I noticed it required over 100MB. Is this normal? I want to port an app I built in Electron JS because to save on disk requirements as well as RAM.
c
You can probably shave a lot of that if your use already has a JRE installed. If they don't, it's normal.
You'll see a big improvement in RAM usage, but disk usage will always be quite high when everything is bundled.
i
Thanks for the replies🙂