How can I see the size of my bundle including assets?

I want to see how big my bundle is on the Expo CDN including assets to keep track of how much my bundle size has increased. How can I see the bundle size?

Assets aren’t included in the bundle, so you’ll have to measure them separately. To see the size of the js bundle you can go to https://expo.io/@[YOUR USERNAME]/[YOUR SLUG]/index.exp?sdkVersion=[YOUR SDK VERSION] and download the file under the bundleUrl key.

1 Like

Thanks! Are the assets stored on the Expo servers?

The assets are stored on S3, but we don’t process them at all so they’ll be the same size as they are on your computer.

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.