Use the Dynamic Imaging Service (DIS) and the <DynamicImage> component to deliver optimized, responsive images in your storefront. DIS formats the correct size for each image application and eliminates the need of uploading multiple images with different sizes.
Images are typically the single largest contributor to page weight. Unoptimized images directly degrade Core Web Vitals, increasing Largest Contentful Paint (LCP) and slowing Time to Interactive. Storefront Next provides built-in DIS integration that handles format conversion, server-side resizing, and responsive source generation automatically.
Dynamic Imaging Service (DIS)
Salesforce B2C Commerce’s Dynamic Imaging Service (DIS) is an image transformation service that optimizes images on-the-fly. Instead of storing pre-generated image variants, DIS transforms images at request time based on URL parameters. CDNs in front of DIS cache the transformed results at the edge.
Why Use DIS
DIS addresses image optimization at the infrastructure level:
Format conversion: Serves modern formats like WebP (25–35% smaller than JPEG/PNG) with automatic fallback. The sfrm (source format) parameter tells DIS the original format so it can transcode on the fly.
Server-side resizing: Sends each device exactly the pixels it needs. A mobile phone receives a 400px-wide image, not a 1400px desktop image downscaled in the browser. When only sw (scale width) is set, DIS scales proportionally. When both sw and sh (scale height) are set, DIS scales the image to those exact output dimensions, constraining the aspect ratio.
Quality control: The q parameter lets you balance visual fidelity against file size. The default q=70 is a good baseline for commerce product photography.
DIS URL Anatomy
Storefront Next rewrites static B2C Commerce image URLs into DIS URLs with transformation parameters:
When enableDis is false (for example, in workspace environments), the image system falls back to serving static assets directly. Format conversion, server-side resizing, and <source> generation are all skipped.
Vanity Domains and Custom Realm Mappings
By default, Storefront Next infers the DIS realm from the SFCC hostname. For standard SFCC hostnames — *.commercecloud.salesforce.com, *.demandware.net, and *.my.cc.salesforce.com — the realm is extracted automatically from the first subdomain (for example, demo-001.dx.commercecloud.salesforce.com → realm DEMO_001).
When your storefront uses a custom or vanity domain (for example, shop.example.com), the realm cannot be inferred from the hostname. Use realmHostMappings to supply explicit mappings:
A hostSuffix value without a leading dot matches only the exact hostname (for example, shop.example.com matches only shop.example.com).
A hostSuffix value with a leading dot matches any subdomain (for example, .acme.io matches www.acme.io, staging.acme.io, and so on).
Realm values are automatically uppercased, so example_001 and EXAMPLE_001 are equivalent.
Custom mappings are checked before the built-in SFCC hostname patterns.
If an image URL does not match any custom mapping or built-in SFCC pattern, toDisImageUrl() returns undefined and the image is served from its original URL without DIS transformation.
Image Filtering on Product Listing Pages
Search responses (fetchSearchProducts) include an imageGroups array on every hit. By default, B2 Commerce API (SCAPI) returns every imageGroup for every variant, which on variant-heavy catalogs can be the dominant contributor to PLP payload size—most of those images are never rendered.
The template restricts the response via SCAPI’s imgTypes query parameter using config.server.ts:
Each role names the viewType a specific consumer reads: tile for the product tile hero, and swatch for the color thumbnails. The search filter derives its imgTypes query parameter as the union of these values (deduplicated and joined with ,), so adding a new role automatically widens the filter. Setting a role to undefined opts that role out. Setting all roles to undefined, or providing an empty images: {}, disables filtering entirely and returns the full payload. imgTypes requires expand=images and allImages=true—both are set by fetchSearchProducts.
Keeping Role-Named Values Aligned with Consumers
If you customize the product tile to read a different viewType (for example, switch the hero from medium to large), you must update the matching role here. Otherwise, the tile will receive empty image arrays for the unrequested viewType. The built-in consumers that should eventually read from these declarations are:
tile in src/components/product-image/index.tsx (currently hardcodes 'medium')
swatch in src/lib/product/product-utils.ts (getDecoratedVariationAttributes, defaults swatchViewType to 'swatch')
The hardcoded strings in those consumers are tracked for a followup cleanup that derives them from these same role-named declarations, eliminating drift.
DynamicImage Component
<DynamicImage> is a responsive image component that generates an optimized <picture> element with DIS-powered <source> elements and responsive preloading via React 19’s preload() API.
This renders a <picture> element with <source> elements sized per breakpoint, each requesting a DIS-resized WebP variant with 1x and 2x srcSet descriptors.
The src Prop and Placeholder Syntax
The src prop accepts plain URLs or URLs with placeholder syntax: bracket-delimited segments that DynamicImage replaces with computed values.
1// Plain URL. DynamicImage appends sw/sh/q params automatically2<DynamicImage src="https://example.com/image.jpg" widths={[400, 800]} />34// Placeholder syntax. {width} and {height} are replaced per breakpoint5<DynamicImage src="https://example.com/image.jpg[?sw={width}&sh={height}]" widths={[400, 800]} heights={[300, 600]} />67// Inline placeholder in path segment8<DynamicImage src="https://example.com/image[_{width}].jpg" widths={[400, 800]} />
The bracket syntax [...] marks optional URL segments that are stripped when no dimensions are provided.
Responsive Widths
The widths prop controls how wide each <source> requests its image from DIS. It determines the sw parameter value and the sizes attribute in the generated markup. It accepts three formats:
Use fixed px widths when the image container has a predetermined size (for example, carousels). Use vw-based widths when the image scales with the viewport (for example, product grids, hero banners).
Server-Side Scaling with Heights
The heights prop enables DIS server-side scaling via the sh parameter. When provided alongside widths, it defines exact output dimensions, giving you precise aspect ratio control across responsive breakpoints.
1// 4:3 aspect ratio maintained across all breakpoints2<DynamicImage3 src="https://example.com/image.jpg[?sw={width}&sh={height}]"4 widths={[400, 800, 1200]}5 heights={[300, 600, 900]}6/>
Both values are multiplied by the DPR factor. At 2x, widths={[400]} and heights={[300]} generates srcSet entries for sw=400&sh=300 (1x) and sw=800&sh=600 (2x).
heights supports the same formats as widths (arrays, objects with breakpoint keys, comma-separated strings for Page Designer).
When heights is omitted, DIS preserves the original aspect ratio based on sw alone.
Loading Priority and Preloading
DynamicImage integrates with React 19’s preload() to emit <link rel="preload"> hints for high-priority images during server rendering:
1// Explicitly high priority. Preloaded during SSR, loaded eagerly.2<DynamicImage src={heroImage} widths={[...]} priority="high" loading="eager" />34// Auto priority (default). Determined by DynamicImageProvider context.5<DynamicImage src={productImage} widths={[...]} />67// Explicitly low priority. Lazy-loaded, no preload hints.8<DynamicImage src={belowFoldImage} widths={[...]} priority="low" loading="lazy" />
When priority isn’t set, the component checks the DynamicImageProvider context to determine whether the image should be treated as high priority. If no context is present, it defaults to 'auto' priority with loading="lazy".
In practice, the PDP image gallery uses conditional priority to eagerly load the first visible image while lazy-loading the rest:
The DynamicImageProvider is an optional React context that controls image priority and dimensions for nested <DynamicImage> components. It solves a practical problem: in deep component trees (for example, product grid → product tile → product image), determining whether an image is above-the-fold requires knowledge the image component itself doesn’t have. The provider bridges that gap by separating the decision about importance from the rendering of individual images.
1import DynamicImageProvider from "@/providers/dynamic-image";
How It Works
The provider deliberately exposes two different interfaces: one for the outer container that sets up the context, and one for the nested consumers that interact with it.
Container interface (passed via value prop). The container defines the business logic:
1value: {2 sources?: Set<string>; // Shared source registry3 widths?: DynamicImageDimensions; // Responsive widths for all nested images4 heights?: DynamicImageDimensions; // Responsive heights for all nested images5 addSource?: (src: string, sources: Set<string>)=> boolean; // Strategy: how to register an image6 hasSource?: (src: string, sources: Set<string>)=> boolean; // Strategy: how to determine importance7}
The container receives the raw Set<string> alongside each src, giving it full control over the registration and lookup logic. It decides what it means for an image to be important.
Consumer interface (returned by useDynamicImageContext()). Consumers just register and query:
1{2 addSource: (src: string)=> boolean; // Register this image (Set is hidden)3 hasSource: (src: string)=> boolean; // Is this image important?4 widths: DynamicImageDimensions | undefined;5 heights: DynamicImageDimensions | undefined;6}
Consumers never see the Set or the strategy. They call addSource(src) to register themselves and read widths/heights for their dimensions. The <DynamicImage> component calls hasSource(src) internally: when it returns true, the image is promoted to priority="high" and loading="eager".
This separation means the container owns all policy decisions while nested components remain generic and reusable.
Example: Product Grid with Critical and Non-Critical Images
Split product grid tiles into critical (above-the-fold) and non-critical (below-the-fold) batches:
1const responsiveImageWidths = [2 '40vw', // base: 2 columns3 '25vw', // sm: 3 columns4 '18vw', // md: 4 columns5 '14vw', // lg: 4 columns with refinement panel6 '16vw', // xl7 '16vw', // 2xl8];910// Critical tiles: all images are high priority11const hasSource = useCallback(()=> true, []);1213<DynamicImageProvider value={{hasSource, widths: responsiveImageWidths}}>14{criticalProducts.map(product =><ProductTile ... />)}15</DynamicImageProvider>1617// Non-critical tiles: no hasSource → all images default to lazy18<DynamicImageProvider value={{widths: responsiveImageWidths}}>19{nonCriticalProducts.map(product =><ProductTile ... />)}20</DynamicImageProvider>
The ProductTile component itself is identical in both batches. It doesn’t know whether it’s above or below the fold. The provider controls that from the outside.
Example: Capping High-Priority Images with a Single Provider
A single provider can use the shared Set<string> to cap how many images are promoted. This example treats only the first row of a four-column grid as high priority:
The first four tiles to call addSource get registered. When <DynamicImage> later calls hasSource, only those four return true.
Example: Selective Registration in Product Tile
Inside each product tile, the ProductImageContainer uses addSource to register whichever image URL is currently selected (which depends on the active color swatch). This is where the two-step contract matters: the tile doesn’t decide importance, it just registers. The grid’s hasSource decides.
1const imageContext = useDynamicImageContext();23// Register the current image URL (resolved from the selected color variant)4currentImageUrl && imageContext?.addSource(currentImageUrl);56// Render with context-provided widths — no prop drilling needed7<ProductImage src={currentImageUrl} widths={imageContext?.widths} />;
A more selective container could supply a hasSource that checks whether a specific src was pre-registered via addSource, making only certain images high-priority rather than all of them. The unconditional () => true in the product grid is the simplest strategy, but the same mechanism supports arbitrary filtering logic.
Dynamic Image Utility Functions
The @/lib/images/dynamic-image module exports lower-level utilities for working with DIS URLs outside the <DynamicImage> component.
toImageUrl()
Converts an image URL to a DIS-optimized URL with graceful fallback. Safe to use with any image URL; returns the original if transformation isn’t possible.
Use this when rendering images outside of <DynamicImage>, for example category banners or content slots with raw HTML.
toDisImageUrl()
Strict variant that only handles SFCC URLs. Returns undefined if the URL can’t be converted (non-SFCC host, missing realm, missing DIS config). Use this when you need to know definitively whether DIS transformation succeeded.
Recognized SFCC hostnames are *.commercecloud.salesforce.com, *.demandware.net, and *.my.cc.salesforce.com. The realm is derived from the first subdomain (for example, demo-001 → DEMO_001).
Rewrites a raw SFCC static image URL into a DIS-hosted URL by inserting the /dw/image/v2/{realm}/ prefix and switching to the configured DIS host. Unlike toDisImageUrl(), it preserves the original file extension and query string—it does not perform format conversion or append DIS transformation parameters (sfrm, q, sw, sh). Use this when downstream code (for example, getResponsivePictureAttributes) handles per-breakpoint format/query generation and just needs a clean DIS-hosted base URL.
Batch-transforms all <img> tags in an HTML string to use DIS URLs. Useful for rich text content from SCAPI or Page Designer that contains embedded images.
1import{transformHtmlImageUrls}from "@/lib/images/dynamic-image";23const html = '<p>Text</p><img src="/on/demandware.static/.../banner.jpg" alt="Sale">';4const optimized = transformHtmlImageUrls(html, config);5// All <img> src attributes are transformed to DIS URLs
replaceImageFormat()
Replaces the file extension in an image URL and adds the sfrm parameter to track the original format. Used internally by the component, but available for custom image handling.
Follow these guidelines to get the best performance from your storefront images:
Above the fold: Set priority="high" and loading="eager" on hero and LCP-candidate images. This triggers React 19 SSR preloading.
Below the fold: Use the default loading="lazy". Omit priority or set priority="low".
Always set widths or heights: Without either, <DynamicImage> renders a plain <img> with no responsive sources. The browser downloads the full-size image regardless of viewport.
Prefer vw for fluid layouts: Use vw-based widths (for example, '50vw') when the image width scales with the viewport. Use px-based widths when the image has a fixed maximum size (for example, product detail at '680px').
Set width/height on non-DynamicImage <img> elements: Always include explicit width and height attributes on standard <img> elements to prevent Cumulative Layout Shift (CLS). <DynamicImage> handles this via its responsive <picture> and sizing attributes.
Use DynamicImageProvider for grids: Wrap product grids in a provider to control priority centrally rather than passing props through every tile.
Use WebP as the target format: The default formats: ['webp'] config gives 25–35% smaller files than JPEG/PNG. The fallbackFormat config (default 'jpg') provides automatic fallback for browsers that don’t support any of the <source> formats.
Tune quality per use case: The default quality: 70 is a good baseline. Hero banners or product zoom may benefit from higher values (80–85). Thumbnails and carousels can go lower (50–60). Override globally per-environment via PUBLIC__app__images__quality, or per-image by adding the URL parameter q= to the src URL (for example, src="https://example.com/image.jpg?q=85"). A q parameter present in the src URL takes priority over the global config.
Alt Text Strategy
Providing meaningful alt text is essential for accessibility and SEO.
Source of Truth
For commerce product images, SCAPI image alt text is the source of truth.
Fallback Order
Use this fallback order for product images.
SCAPI image alt (image.alt)
Product name (productName / name)
Localized generic fallback (for example, t('common:productImageAlt'))
Non-localized English fallback as a final safety net (for example, 'Product Image')
Use explicit || fallback chains in components to preserve this order.
Rules
Always provide an alt attribute on rendered <img> elements.
Use localized strings for generic fallback alt text, then a hardcoded English fallback as the last resort.
Decorative images must set alt="" when the image is purely decorative and has no meaningful text equivalent.