himynameisdave / postcss-plugins

The "officially unofficial" consolidated list of PostCSS plugins in a ready-to-use package
MIT License
128 stars 154 forks source link

Add plugin postcss-hairlines #293

Closed zhouchengi closed 4 years ago

zhouchengi commented 4 years ago

Add webp suffix to url of background or background-image in css.

Before:

.foo {
  background-image: url(./bg.png);
}

After:

.foo {
  background-image: url(./bg.png);
}
.webp .foo {
  background-image: url(./bg.png?x-oss-process=image/format, webp);
}
himynameisdave commented 4 years ago

Hi @zhouchengi! This repository is just a list of postcss plugins, and as a maintainer I don't personally add plugins to the list. Both of your plugins seem like they would be great additions to the list though! I encourage you to follow the instructions for submitting new plugins via opening a pull request! Thank you! :)