I recognized that in GWT, an ImageResource can be annotated with
@ImageResource.ImageOptions(preventInlining = true)
to prevent it from being added as url('data:image/gif;base64...')
.
Are there any downsides of inlining images that way? May it be a problem that the DOM get's bloated with a lot of Base64 code? Or asked differently: Why would someone use preventInlining = true
?