Commit 5efefbd972ee6e129b5adf4e72551b75e5ea2709
1 parent
f6e53716
Exists in
master
and in
8 other branches
Remove sprite css cache
Showing
1 changed file
with
2 additions
and
1 deletions
Show diff stats
gulp/images.js
... | ... | @@ -18,7 +18,8 @@ gulp.task('sprites', function () { |
18 | 18 | return sprity.src({ |
19 | 19 | src: src, |
20 | 20 | style: 'sprite.css', |
21 | - cssPath: '../assets/images/icons/' | |
21 | + cssPath: '../assets/images/icons/', | |
22 | + cachebuster: true | |
22 | 23 | }) |
23 | 24 | .pipe(gulpif('*.png', gulp.dest(destImg), gulp.dest(destCss))); |
24 | 25 | }); | ... | ... |