Fixed the svgmin in the gruntfile

This commit is contained in:
Stephen Bégay
2015-03-27 15:53:13 -04:00
parent 74da5a3e34
commit 0b7d23b73f

View File

@@ -138,11 +138,14 @@ module.exports = function(grunt) {
{ removeUselessStrokeAndFill: false }
]
},
dist: {
files: {
'assets/images/dist/': 'assets/images/dist/*.svg'
}
}
dist: {
expand: true,
cwd: 'assets/images/dist/',
src: '*.svg',
dest: 'assets/images/dist/',
ext: '.svg',
extDot: 'first'
}
},
// imagemin: Minify PNG and JPEG images.