649
Apple forgot to disable production source maps on the App Store web app
(files.catbox.moe)
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
You’re supposed to disable source maps in prod?
Asking for a friend
Just to save on wasted bandwidth for the client (and your server) is why I would disable them.
AFAIK, the source maps are only actually requested/downloaded when the user opens the dev tools. There’s no reason to have them automatically download for every visitor. The enable/disable simply toggles whether or not the request is accepted when the user opens the dev tools.
So if my understanding is correct, keeping it enabled wouldn’t really impact server load, unless lots of users are constantly using the dev tools.