From adbe237d0c04eeaa44b88687ef2bbcde5312860d Mon Sep 17 00:00:00 2001 From: Stephen Gheysens Date: Sun, 12 Dec 2021 15:12:26 -0500 Subject: [PATCH] Updated link to Local Images (#32427) Local Images is on the Image Optimization page under the Basic Features docs ## Documentation / Examples - [x] Make sure the linting passes by running `yarn lint` Co-authored-by: Lee Robinson <9113740+leerob@users.noreply.github.com> --- docs/api-reference/next/image.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api-reference/next/image.md b/docs/api-reference/next/image.md index 1b2258f4bb33..b6a6640e3dd5 100644 --- a/docs/api-reference/next/image.md +++ b/docs/api-reference/next/image.md @@ -144,7 +144,7 @@ Should only be used when the image is visible above the fold. Defaults to `false A placeholder to use while the image is loading. Possible values are `blur` or `empty`. Defaults to `empty`. -When `blur`, the [`blurDataURL`](#blurdataurl) property will be used as the placeholder. If `src` is an object from a [static import](#local-images) and the imported image is `.jpg`, `.png`, `.webp`, or `.avif`, then `blurDataURL` will be automatically populated. +When `blur`, the [`blurDataURL`](#blurdataurl) property will be used as the placeholder. If `src` is an object from a [static import](/docs/basic-features/image-optimization.md#local-images) and the imported image is `.jpg`, `.png`, `.webp`, or `.avif`, then `blurDataURL` will be automatically populated. For dynamic images, you must provide the [`blurDataURL`](#blurdataurl) property. Solutions such as [Plaiceholder](https://github.com/joe-bell/plaiceholder) can help with `base64` generation.