Timur
Results
2
comments of
Timur
In your case, you can use the gulp-modify-css-urls. [https://www.npmjs.com/package/gulp-modify-css-urls](url) You should sort urls with RegExp like this /\w+\.(jpg|png|svg)/ For example, .pipe(modifyCssUrls({ modify: function(url, filePath) { if(/^([a-z])([a-z]|[A-Z]|-)+\.(jpg|png|svg)/i.test(url)) return '../img/blocks/' + url;...
Same for me