diff --git a/symfony/ux-lazy-image/2.17/config/packages/lazy_image.yaml b/symfony/ux-lazy-image/2.17/config/packages/lazy_image.yaml new file mode 100644 index 000000000..21c8cf61b --- /dev/null +++ b/symfony/ux-lazy-image/2.17/config/packages/lazy_image.yaml @@ -0,0 +1,15 @@ +lazy_image: + # By default, images are fetch through "file_get_contents" function, but you can use your own implementation + # with an invokable service or a callable. + # https://symfony.com/bundles/ux-lazy-image/current/index.html#customizing-images-fetching + # fetch_image_content: 'App\BlurHash\FetchImageContent' + + # It is recommended to cache the generated BlurHash for performance reasons, to avoid generating it for each request. + # https://symfony.com/bundles/ux-lazy-image/current/index.html#performance-considerations + # cache: cache.lazy_image + +framework: + cache: + # pools: + # If possible, prefer to use a cache adapter that is not cleared between deployments, like "cache.adapter.redis" + # cache.lazy_image: cache.app diff --git a/symfony/ux-lazy-image/2.17/manifest.json b/symfony/ux-lazy-image/2.17/manifest.json new file mode 100644 index 000000000..e10d0f28e --- /dev/null +++ b/symfony/ux-lazy-image/2.17/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Symfony\\UX\\LazyImage\\LazyImageBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +}