My project structure looks like this:
project/
build/
css/
js/
img/
gulpfile.js
if i set opts.fullPath and use in CSS url like:
body {
background: url(../img/bg/my-super-bg-1600x.jpg);
}
then gulp-responsive-config processing it with dots and gulp-responsive can not find images in source folder build/img
FIX in index.js at line 30:
var dirname = opts.fullPath ? path.dirname(imagePath) : '';
// Add this line
dirname = dirname.replace(/^(?:\.\.\/)+/, "");
// ---