How to implement the sourceCollection responsive image rendering in TYPO3?
问题 I want to implement responsive image rendering according to the different scale (media) in TYPO3 using sourceCollection? <picture> <source src="fileadmin/_processed_/imagefilenamename_595cc36c48.png" media="(max-device-width: 600px)" /> <source src="fileadmin/_processed_/imagefilenamename_42fb68d642.png" media="(max-device-width: 600px) AND (min-resolution: 192dpi)" /> <img src="fileadmin/_processed_/imagefilenamename_595cc36c48.png" alt="" /> </picture> I can render it using TypoScript but