You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 11, 2022. It is now read-only.
I'm on a Windows machine and using postcss-assets. When I use resolve() in combination with the 'relativeTo' option, I receive double backslashes as css output instead of a simple /
Sorry, I'm not familar with Travis CI. I had a look at your code and tried a quick and dirty way to get the expected result after inspecting the output of cssesc(url.format(assetUrl)). But I'm not sure if it has any unwanted side effects. Maybe it helps?
/* index.js */Assets.prototype.resolveUrl=function(assetStr){
...
/* line: 130 */returncssesc(url.format(assetUrl));/* change works on windows */returncssesc(url.format(assetUrl.path));}
I'm on a Windows machine and using postcss-assets. When I use resolve() in combination with the 'relativeTo' option, I receive double backslashes as css output instead of a simple /
The text was updated successfully, but these errors were encountered: