What is Resource Batching?

Hello,

can anyone explain to me what this mean?

Dev mode - web resource batching disabled, ‘atlassian.dev.mode’ enabled

cheers
Chris

The js and css files are no longer combined. This isn’t something you’d want to do in production (batching helps to speed things up). In development mode you don’t really want this since it will have to rematch things each time you make a change in them (and it will be slower) so each js file is loaded independently.

1 Like