Skip to content

Commit

Permalink
docs: Fix image component API reference parsing (#73658)
Browse files Browse the repository at this point in the history
  • Loading branch information
eps1lon authored Dec 8, 2024
1 parent f348241 commit c291ff6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/01-app/03-api-reference/02-components/image.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ unoptimized = {false} // {false} | {true}

When true, the source image will be served as-is from the `src` instead of changing quality, size, or format. Defaults to `false`.

This is useful for images that do not benefit from optimization such as small images (<1KB), vector images (SVG), or animated images (GIF).
This is useful for images that do not benefit from optimization such as small images (less than 1KB), vector images (SVG), or animated images (GIF).

```js
import Image from 'next/image'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ const Example = () => {

When true, the source image will be served as-is from the `src` instead of changing quality, size, or format. Defaults to `false`.

This is useful for images that do not benefit from optimization such as small images (<1KB), vector images (SVG), or animated images (GIF).
This is useful for images that do not benefit from optimization such as small images (less than 1KB), vector images (SVG), or animated images (GIF).

```js
import Image from 'next/image'
Expand Down

0 comments on commit c291ff6

Please sign in to comment.