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

Flexible srcset-loader for webpack

Results 12 srcset-loader issues
Sort by recently updated
recently updated
newest added

As mentioned in #26, sharp provides some pre-compiled binaries since v0.20. To make use of them, we need to update sharp.

Does this work in webpack 4 and create react app? Is this more up to date? https://github.com/herrstucki/responsive-loader Thanks in advance

sharp v0.20.0 was recently released, which can provide pre-built binaries. That fixes installation issues in complicated build environments, and makes for hella faster Docker builds, with fewer requirements. Yay!

Anyone is getting the same error when running the tests? ![image](https://user-images.githubusercontent.com/16399787/42907371-db47ac60-8add-11e8-9edf-7feea07b8964.png)

Hello, srcset-loader is returning appropriate output but the images created are broken. I have asked for help on [Stackoverflow](https://stackoverflow.com/questions/46513896/srcset-loader-creating-broken-files-webpack) Any help is appreciated.

I'm not sure whether I use this right. So I suppose this plugin creates images depending on the query string you give each image in your html (picture tags)? Or...

I can't manage to make `srcset-loader` work when I have both dynamic paths and loader options. Here is the `webpack.config.js` section corresponding to the image rules: ```javascript { test: /\.(gif|png|jpe?g)$/i,...

**Versions:** ``` image-webpack-loader 3.4.2 srcset-loader 2.2.2 webpack 3.6.0 ``` This is my loader setup for image files, pairing srcset-loader with image-webpack-loader ``` rules: [ { test: /\.(gif|png|jpe?g)$/i, use: [ {...

This is more a discussion on how feasible it would be than a feature request Some browser support defining responsive images in CSS, it would be nice if there was...

In my opinion `ratio` shouldn't be at `img.placeholder.ratio` but instead promoted to `img.ratio`. It's a property of the original image, not just of the placeholder, and is useful even when...