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

Bumps [next](https://github.com/vercel/next.js) from 8.1.0 to 11.1.3. Release notes Sourced from next's releases. v11.1.3 See https://github.com/vercel/next.js/releases/v12.0.5 for details about this patch. v11.1.3-canary.105 Core Changes Update swc-minify-enabled link: #30290 Fix middleware header...

dependencies

In order to get my Next.js project to export using `next export` I had to add this code to the next.config.js: ``` images: { loader: 'custom' } ``` See https://github.com/vercel/next.js/issues/21079#issuecomment-899535752

As title. I've been using something like this everywhere in my project. ```js ``` When I visited one of the company pages on my site. I loaded all the optimized...

If you install `next-optimized-images` on a device that has an ARM processor, it will throw an error cause sharp with versions < 0.29 will pull an incompatible version of `libvips`....

`imagemin-svgo` introduced a breaking change with the latest version [10.0.0](https://github.com/imagemin/imagemin-svgo/releases/tag/v10.0.0) which breaks compatibility with `next-optimized-images`. They switched from CommonJS Modules to ESM. Related issue from the library: https://github.com/imagemin/imagemin-svgo/issues/51 ``` >...

I've set up [my next.config.js](https://github.com/mllamazares/mllamazares.github.io/blob/master/next.config.js) like this: ```javascript const withPlugins = require('next-compose-plugins'); const optimizedImages = require('next-optimized-images'); const withBundleAnalyzer = require('@next/bundle-analyzer')({ enabled: process.env.ANALYZE === 'true', }) module.exports = withPlugins([ [optimizedImages, {...

Bumps [tmpl](https://github.com/daaku/nodejs-tmpl) from 1.0.4 to 1.0.5. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tmpl&package-manager=npm_and_yarn&previous-version=1.0.4&new-version=1.0.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

The setup instructions for TypeScript contained an error because of a suggested antipattern (https://nextjs.org/docs/basic-features/typescript) the type must be added to a separate file, otherwise it will keep getting overwritten.

That includes TypeScript, tests setup, etc. Based on this article: https://blog.whereisthemouse.com/image-optimization-for-static-nextjs-sites This would be very helpful for discoverability of using `next-optimized-images`!