I'd like to add a default sizes attribute to my images. Setting defaults in system.yaml works, but the sizes attribute gets truncated after the first comma.
Setting:
YAML
images:
defaults:
sizes: '(min-width: 36em) 50vw, 100vw'
leads to:
HTML
sizes="(min-width: 36em) 50vw"
Is there any way around this?