borodean / postcss-assets

An asset manager for PostCSS
MIT License
537 stars 32 forks source link

Protocol agnostic URL getting wrongly added. #75

Closed Pasupathi-Rajamanickam closed 6 years ago

Pasupathi-Rajamanickam commented 7 years ago

I have a style like the before

load{ background: url("//www.example.com/example.gif") no-repeat; }

this is getting created after build

load{ background: url("//example.com/example.gif") no-repeat; }

which is failing in my case to download the assets.

borodean commented 7 years ago

@popkutty I don't see how it's related to postcss-assets. The plugin deals with the resolve(), inline(), width(), height() and size() pseudofunctions, but has nothing to do with the vanilla url() one.

Why do you think it is related?

borodean commented 6 years ago

Closed due to inactivity.