Images
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.
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.
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 bothswandsh(scale height) are set, DIS scales the image to those exact output dimensions, constraining the aspect ratio. - Quality control: The
qparameter lets you balance visual fidelity against file size. The defaultq=70is a good baseline for commerce product photography.
Storefront Next rewrites static B2C Commerce image URLs into DIS URLs with transformation parameters:
Parameters used by <DynamicImage>:
| Parameter | Full Name | Description | Example |
|---|---|---|---|
sw | scaleWidth | Scale width. Resizes to this width in pixels. When used alone, aspect ratio is preserved. | sw=720 |
sh | scaleHeight | Scale height. When combined with sw, scales to exact dimensions (constraining aspect ratio). | sh=480 |
q | quality | Quality: 1 to 100. Controls compression level. | q=70 |
sfrm | — | Source format. Tells DIS the original format for transcoding. | sfrm=jpg |
The file extension in the URL path determines the output format (for example, .webp), while sfrm records the original format.
Additional DIS parameters not used by <DynamicImage> (but available for custom URL construction):
| Parameter | Full Name | Description |
|---|---|---|
sm | scaleMode | Controls scaling behavior: fit (default, fits within sw×sh preserving aspect ratio), cut (fills sw×sh and crops overflow) |
cx, cy, cw, ch | cropX, cropY, cropWidth, cropHeight | Pixel-precise crop region. All four parameters must be specified together. |
bgcolor | — | Background color for transparent areas (6-digit hex, for example bgcolor=FFFFFF) |
strip | — | Remove image metadata (for example, EXIF) |
Configure DIS behavior in config.server.ts under the images key:
Override these values per environment with environment variables:
DIS hosts:
- Staging:
https://edge.disstg.commercecloud.salesforce.com - Production:
https://edge.dis.commercecloud.salesforce.com
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.
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:
Matching rules:
- A
hostSuffixvalue without a leading dot matches only the exact hostname (for example,shop.example.commatches onlyshop.example.com). - A
hostSuffixvalue with a leading dot matches any subdomain (for example,.acme.iomatcheswww.acme.io,staging.acme.io, and so on). - Realm values are automatically uppercased, so
example_001andEXAMPLE_001are 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.
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.
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:
tileinsrc/components/product-image/index.tsx(currently hardcodes'medium')swatchinsrc/lib/product/product-utils.ts(getDecoratedVariationAttributes, defaultsswatchViewTypeto'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> 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 accepts plain URLs or URLs with placeholder syntax: bracket-delimited segments that DynamicImage replaces with computed values.
The bracket syntax [...] marks optional URL segments that are stripped when no dimensions are provided.
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:
Array of numbers (interpreted as px):
Array of strings (px or vw units):
When using vw units, DynamicImage calculates the actual pixel width at each breakpoint to request the correct size from DIS.
Object with breakpoint keys (maps to Tailwind’s default breakpoints):
Breakpoint keys correspond to Tailwind’s default theme: base, sm, md, lg, xl, 2xl. Values are carried forward: { base: 400, lg: 800 } produces [400, 400, 400, 800].
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).
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.
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.
DynamicImage integrates with React 19’s preload() to emit <link rel="preload"> hints for high-priority images during server rendering:
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.
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:
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:
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.
Split product grid tiles into critical (above-the-fold) and non-critical (below-the-fold) batches:
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.
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.
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.
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.
The @/lib/images/dynamic-image module exports lower-level utilities for working with DIS URLs outside the <DynamicImage> component.
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.
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.
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"andloading="eager"on hero and LCP-candidate images. This triggers React 19 SSR preloading. - Below the fold: Use the default
loading="lazy". Omit priority or setpriority="low". - Always set
widthsorheights: 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 explicitwidthandheightattributes on standard<img>elements to prevent Cumulative Layout Shift (CLS).<DynamicImage>handles this via its responsive<picture>and sizing attributes. - Use
DynamicImageProviderfor 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. ThefallbackFormatconfig (default'jpg') provides automatic fallback for browsers that don’t support any of the<source>formats. - Tune quality per use case: The default
quality: 70is 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 viaPUBLIC__app__images__quality, or per-image by adding the URL parameterq=to the src URL (for example,src="https://example.com/image.jpg?q=85"). Aqparameter present in the src URL takes priority over the global config.
Providing meaningful alt text is essential for accessibility and SEO.
For commerce product images, SCAPI image alt text is the source of truth.
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.
- Always provide an
altattribute 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.
- Dynamic Imaging Service (Official Salesforce DIS documentation)
- Static Assets (Serving static files from the public directory)
- UI Styling (Tailwind CSS and design tokens)