Skip to content
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

fix(picture): Render nuxt picture default img with passed sizes #625

Open
wants to merge 1 commit into
base: v0
Choose a base branch
from

Conversation

schnetzi
Copy link

@schnetzi schnetzi commented Oct 4, 2022

πŸ”— Linked issue
resolves https://github.com/nuxt/image/issues/584

❓ Type of change

  • πŸ“– Documentation (updates to the documentation or readme)
  • 🐞 Bug fix (a non-breaking change that fixes an issue)
  • πŸ‘Œ Enhancement (improving an existing functionality like performance)
  • ✨ New feature (a non-breaking change that adds functionality)
  • ⚠️ Breaking change (fix or feature that would cause existing functionality to change)

πŸ“š Description
This renders the passed sizes of the picture element in the default image source. This will prevent, ensure that the default loaded image has the size of the passed parameters.

πŸ“ Checklist

  • I have linked an issue or discussion.
  • I have updated the documentation accordingly.

* To not load an image that is too big as default image.
return {
sizes: variants.map(v => `${v.media ? v.media + ' ' : ''}${v.size}`).join(', '),
srcset: variants.map(v => `${v.src} ${v.width}w`).join(', '),
src: defaultVar?.src
src: defaultSrcWithAdaptedSize
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think the default image size should be adapted, also see comment in your original issue #584 (comment)

@pi0 pi0 added the v0 label Nov 24, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants