diff --git a/index.js b/index.js index 52b82b2..8628748 100644 --- a/index.js +++ b/index.js @@ -84,6 +84,7 @@ function addAssetsToStream(paths, files) { .pipe(gulpif(!options.noconcat, concat(name, gulpConcatOptions))) .pipe(through.obj(function (newFile, encoding, callback) { // specify an output path relative to the cwd + newFile.path = newFile.path.split("?")[0]; if (options.base) { newFile.path = path.join(options.base, name); newFile.base = options.base;