Skip to content

Fix images path in the Reduce Image Bandwidth Usage example #965

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions solutions/reduce-image-bandwidth-usage/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Our card is represented by this code:

But wait, given this code we end up with this 👇

![01](./public/docs/screenshot-1.jpg)
![Our element has a width of 256px but we are serving a 1000px image!](./public/docs/screenshot-1a.png)

> Our element has a width of 256px but we are serving a 1000px image!

Expand All @@ -39,7 +39,7 @@ The [`sizes`](https://nextjs.org/docs/api-reference/next/image#sizes) prop provi
</Card>
```

![02](./public/docs/screenshot-2.jpg)
![Now we are being served with an optimized image](./public/docs/screenshot-2a.png)

> Now we are being served with an optimized image.

Expand Down