Release Notes / Version 11.2201
Table Of ContentsNew Supported File Types for Theme Importer
The ThemeImporter in the blueprint supports additionally file types.
webp
and
avif
as images and
wasm
and
json
as static resources. If the files are located inside the preconfigured folders like
img/
,
images/
or
vendor/
, they will be copied into the theme zip file automatically. Otherwise add them to your webpack configuration according to the documentation in the Frontend Manual.
(CMS-19886)
Added Lazy Loading to Images
All images in the frontend blueprint, rendered by Freemarker, got an extra attribute
loading="lazy"
by default. All modern browsers support this lazy loading mechanism, which will increase the render time of websites in the browser.
(CMS-19736)
Allow Standalone JavaScripts Files in Themes
Added a new feature that allows building standalone JavaScript files with Webpack in our themes. More information can be found in the Frontend Developer Manual.
(CMS-18953)