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.

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:

1Original (static asset):
2https://demo-001.dx.commercecloud.salesforce.com/on/demandware.static/-/Sites-catalog/default/.../image.jpg
3
4DIS URL:
5https://edge.disstg.commercecloud.salesforce.com/dw/image/v2/DEMO_001/on/demandware.static/-/Sites-catalog/default/.../image.webp?sfrm=jpg&sw=720&sh=480&q=70
6        └─────────────── DIS Host ──────────────┘           └ Realm ┘                                                       └─ Format(s) ─┘└──── Params ────┘

Parameters used by <DynamicImage>:

ParameterFull NameDescriptionExample
swscaleWidthScale width. Resizes to this width in pixels. When used alone, aspect ratio is preserved.sw=720
shscaleHeightScale height. When combined with sw, scales to exact dimensions (constraining aspect ratio).sh=480
qqualityQuality: 1 to 100. Controls compression level.q=70
sfrmSource 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):

ParameterFull NameDescription
smscaleModeControls scaling behavior: fit (default, fits within sw×sh preserving aspect ratio), cut (fills sw×sh and crops overflow)
cx, cy, cw, chcropX, cropY, cropWidth, cropHeightPixel-precise crop region. All four parameters must be specified together.
bgcolorBackground color for transparent areas (6-digit hex, for example bgcolor=FFFFFF)
stripRemove image metadata (for example, EXIF)

Configuration 

Configure DIS behavior in config.server.ts under the images key:

1images: {
2    quality: 70,            // Default DIS quality (1-100)
3    formats: ['webp'],      // Target format(s) for <source> elements
4    fallbackFormat: 'jpg',  // Format for the <img> fallback src
5    host: DIS_DEFAULT_HOST, // DIS endpoint URL
6    enableDis: true,        // Master switch to enable/disable DIS
7    realmHostMappings: [],  // Custom realm mappings for vanity domains
8}

Override these values per environment with environment variables:

1PUBLIC__app__images__quality=80
2PUBLIC__app__images__enableDis=false
3PUBLIC__app__images__host=https://edge.dis.commercecloud.salesforce.com

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.

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:

1images: {
2    realmHostMappings: [
3        { hostSuffix: 'shop.example.com', realm: 'EXAMPLE_001' },
4        { hostSuffix: '.acme.io', realm: 'ACME_001' },
5    ],
6}

Matching rules:

  • 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:

1search: {
2  products: {
3    images: {
4      tile: 'medium',
5      swatch: 'swatch',
6    },
7  },
8}

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.

1import { DynamicImage } from "@/components/dynamic-image";

Basic Usage 

1<DynamicImage src="https://example.com/image.jpg" alt="Product photo" widths={[400, 800, 1200]} />

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 automatically
2<DynamicImage src="https://example.com/image.jpg" widths={[400, 800]} />
3
4// Placeholder syntax. {width} and {height} are replaced per breakpoint
5<DynamicImage src="https://example.com/image.jpg[?sw={width}&sh={height}]" widths={[400, 800]} heights={[300, 600]} />
6
7// Inline placeholder in path segment
8<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:

Array of numbers (interpreted as px):

1<DynamicImage src={imageSrc} widths={[400, 600, 800, 1000]} />

Array of strings (px or vw units):

1// Mixed units: vw for fluid layouts, px for fixed layouts
2<DynamicImage src={imageSrc} widths={["100vw", "50vw", "680px"]} />

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):

1<DynamicImage src={imageSrc} widths={{ base: 400, sm: 600, md: 800, lg: 1000 }} />
2
3// With units
4<DynamicImage src={imageSrc} widths={{ base: '100vw', sm: '50vw', md: '680px' }} />

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).

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 breakpoints
2<DynamicImage
3  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" />
3
4// Auto priority (default). Determined by DynamicImageProvider context.
5<DynamicImage src={productImage} widths={[...]} />
6
7// 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:

1<DynamicImage
2  src={`${selectedImage.src}[?sw={width}]`}
3  alt={selectedImage.alt || imageAltFallback}
4  widths={["100vw", "680px"]}
5  loading={eager ? "eager" : "lazy"}
6  priority={eager ? "high" : undefined}
7/>

DynamicImageProvider Context 

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 registry
3    widths?: DynamicImageDimensions;                             // Responsive widths for all nested images
4    heights?: DynamicImageDimensions;                            // Responsive heights for all nested images
5    addSource?: (src: string, sources: Set<string>) => boolean;  // Strategy: how to register an image
6    hasSource?: (src: string, sources: Set<string>) => boolean;  // Strategy: how to determine importance
7}

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 columns
3    '25vw', // sm: 3 columns
4    '18vw', // md: 4 columns
5    '14vw', // lg: 4 columns with refinement panel
6    '16vw', // xl
7    '16vw', // 2xl
8];
9
10// Critical tiles: all images are high priority
11const hasSource = useCallback(() => true, []);
12
13<DynamicImageProvider value={{ hasSource, widths: responsiveImageWidths }}>
14    {criticalProducts.map(product => <ProductTile ... />)}
15</DynamicImageProvider>
16
17// Non-critical tiles: no hasSource → all images default to lazy
18<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:

1const addSource = useCallback((src, sources) => {
2    if (sources.size < 4) { sources.add(src); return true; }
3    return false;
4}, []);
5const hasSource = useCallback((src, sources) => sources.has(src), []);
6
7<DynamicImageProvider value={{ addSource, hasSource, widths: responsiveImageWidths }}>
8    {allProducts.map(product => <ProductTile ... />)}
9</DynamicImageProvider>

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();
2
3// Register the current image URL (resolved from the selected color variant)
4currentImageUrl && imageContext?.addSource(currentImageUrl);
5
6// Render with context-provided widths — no prop drilling needed
7<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.

1import { toImageUrl } from "@/lib/images/dynamic-image";
2
3// SFCC URL → DIS WebP
4toImageUrl({ src: "https://demo-001.dx.commercecloud.salesforce.com/.../image.jpg", config });
5// → 'https://edge.disstg.commercecloud.salesforce.com/dw/image/v2/DEMO_001/.../image.webp?sfrm=jpg&q=70'
6
7// Non-SFCC URL → returned as-is (fallback)
8toImageUrl({ src: "https://example.com/image.jpg", config });
9// → 'https://example.com/image.jpg'

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-001DEMO_001).

1import { toDisImageUrl } from "@/lib/images/dynamic-image";
2
3toDisImageUrl({ src: sfccUrl, options: { width: 720, height: 480, quality: 80 }, config });
4// → 'https://edge.disstg.commercecloud.salesforce.com/dw/image/v2/DEMO_001/.../image.webp?sfrm=jpg&sw=720&sh=480&q=80'

toDisBaseUrl() 

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.

1import { toDisBaseUrl } from "@/lib/images/dynamic-image";
2
3toDisBaseUrl({
4  src: "https://demo-001.my.cc.salesforce.com/on/demandware.static/-/.../image.jpg",
5  config,
6});
7// → 'https://edge.disstg.commercecloud.salesforce.com/dw/image/v2/DEMO_001/on/demandware.static/-/.../image.jpg'

transformHtmlImageUrls() 

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";
2
3const 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.

1import { replaceImageFormat } from "@/lib/images/dynamic-image";
2
3replaceImageFormat("https://example.com/image.jpg?sw=460&q=60");
4// → 'https://example.com/image.webp?sw=460&q=60&sfrm=jpg'

Performance Checklist 

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.

  1. SCAPI image alt (image.alt)
  2. Product name (productName / name)
  3. Localized generic fallback (for example, t('common:productImageAlt'))
  4. 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.

See Also