correctly cache sprite images

This commit is contained in:
Matteo Pagliazzi
2014-01-07 20:23:39 +01:00
parent bef4f0685e
commit 5024956e6f
+4 -1
View File
@@ -36,7 +36,10 @@ module.exports = function(grunt) {
copy: {
build: {
files: [{expand: true, cwd: 'public/', src: 'favicon.ico', dest: 'build/'}]
files: [
{expand: true, cwd: 'public/', src: 'favicon.ico', dest: 'build/'},
{expand: true, cwd: 'public/', src: 'bower_components/habitrpg-shared/dist/spritesmith-*.png', dest: 'build/'}
]
}
},