I just upgraded from 1.8.1 to 1.8.2 and now deployment of my app to Galaxy fails with
Error deploying application: Application is too large (maximum 367001600 bytes). Consider moving static assets to a separate static hosting
service.
I already removed some static assets from public but so far no difference. How do I determine the actual size of the application to be deployed? Any other tips to make the app smaller?
My first todo would be to bundle the app myself to check its size.
Usual suspects for bloat I find are ofc static assets, node_modules and meteor packages. you can use e.g. this https://www.npmjs.com/package/node-modules-size to get an estimate. Often we install deps just for a single purpose or function, which is convenient but adds bloat, so here is a chance for optimisation.
Even though the size difference posted is real, it was not the reason for my deployment problem. I was testing a package, and build bundled up the test app inside the package.