responsive-loader icon indicating copy to clipboard operation
responsive-loader copied to clipboard

A webpack loader for responsive images

Results 28 responsive-loader issues
Sort by recently updated
recently updated
newest added

Is there a way to specify a custom contenthash length? It seems the loader is ignoring the custom length placeholder option for contenthash, e.g. ```js options: { ... name: '[path][name]-[width].[contenthash:8].[ext]',...

Hi! I am trying to get responsive loader working with Webpack 5 and html-webpack-plugin... But it seems there is something wrong with URL / image path generation... ``` Html Webpack...

Hi there, I cannot find any mention in the documentation about support for optimizing remote images (like [is possible with the built-in Next.js image optimization solution](https://nextjs.org/docs/basic-features/image-optimization#remote-images)). If this use-case isn't...

Bumps [terser](https://github.com/terser/terser) from 5.14.0 to 5.14.2. Changelog Sourced from terser's changelog. v5.14.2 Security fix for RegExps that should not be evaluated (regexp DDOS) Source maps improvements (#1211) Performance improvements in...

dependencies

- Operating System: Windows 10 x64 (WSL 2) - Node Version: `v14.15.4` - NPM Version: `7.5.4` - webpack Version: `5.x` - image-minimizer-webpack-plugin Version: `2.2.0` ### Expected Behavior webpack build should...

I'm getting this error when I check types ![image](https://user-images.githubusercontent.com/58653359/77312087-44ebf080-6d3c-11ea-818a-15bb79343e43.png) To reproduce: ``` import afrom '../a.png?sizes[]=111' ``` I wonder how all other people are using this library without running into this...

When using this plugin for a larger number of sizes the CPU and memory go to 100% and my WSL 2 system basically crashes. Is there a way to limit...

I'm using version 3.0.0-2 ```ts export default { output: { path: '/dist/public', publicPath: '/public/' } module: { rules: [ { test: /\.(jpe?g|png|gif|webp)$/i, use: [ { loader: 'responsive-loader', options: { //...

Because `srcSet`'s paths are not escaped, it will produce this invalid output; ```html ``` resulting in this error in the conosle (in Chrome): ``` Dropped srcset candidate "/_next/static/images/Review" Failed parsing...

Webpack's default rule `images` conflicts with all of the provided examples. To get this to work (at least with a new project created by the `vue-cli`), you need to either...