diff --git a/webfont/Gruntfile.js b/webfont/Gruntfile.js index f92ce885..6c104658 100644 --- a/webfont/Gruntfile.js +++ b/webfont/Gruntfile.js @@ -1,23 +1,23 @@ module.exports = function(grunt) { 'use strict'; grunt.initConfig({ // Create the webfont files: webfont: { icons: { src: '../icons/actions/22@2x/*.svg', dest: './dist', options: { - stylesheet: 'scss', + stylesheet: 'css', types: 'eot,woff2,ttf,svg', optimize: false } } } }); grunt.loadNpmTasks('grunt-webfont'); // Run the default task by executing "grunt" in the CLI: grunt.registerTask('default', ['webfont']); };