next-optimized-images icon indicating copy to clipboard operation
next-optimized-images copied to clipboard

🌅 next-optimized-images automatically optimizes images used in next.js projects (jpeg, png, svg, webp and gif).

Results 113 next-optimized-images issues
Sort by recently updated
recently updated
newest added

First of all, thanks for such an awesome plugin! Second, when there's a size listed that's larger than the original image size, the plugin seems to create a larger image....

I import an image like so: ```js import screenshot1 from '../../public/static/screenshots/screenshot-1.png?resize&sizes[]=375&sizes[]=750&sizes[]=1080&sizes[]=2160' ``` My config is: ```js [ withOptimizedImages, { handleImages: ['jpeg', 'png', 'webp', 'gif'], optimizeImages: true, optimizeImagesInDev: true, responsiveLoader: {...

I just started using this library today but I can't get it to work. The only thing that has worked for me so far is using `?lqip`. I've installed webp-loader,...

Fix responsive loader >2.0.1 resolve path with backward compatibility

So this is pretty strange. I have a component that looks like: **components/common/FallbackImg.tsx** ``` import React, { ImgHTMLAttributes } from 'react'; interface Props extends ImgHTMLAttributes { src: string; srcWebp: string;...

I want to require images using a function that constructs the image name. I know all the image URLs that would be required in advance. Should I use a code-gen...

Currently, I'm trying to use `next-optimized-images` with `@svgr/webpack`, but I noticed they don't play along nicely. With the latter I can import SVG images as react components and I'm wondering...

I noticed that my Page get's very large if using the new Img Component. If using only a few Img Elements with each a few combinations of density, webp and...

First of all, thanks for this module. I'm currently playing around with the Canary version and the corresponding `react-optimized-image` module. ```js ``` Throws an Error: ```bash TypeError: Cannot read property...

need help, how to optimize dynamic images from CDN??