Meteor server only bundle size

how to reduce server bundle size?

there’re some modules i don’t use on server and two copies of typescript

should i meteor npm i --production before bundle?

there’s no different between meteor npm i and meteor npm i --production

Generally speaking bundle optimizations for the client are what is focused on, since the client bundle is the portion that is transferred repeatedly while the server bundle is only transferred to the server when the app is deployed.