Last active
July 21, 2016 13:16
-
-
Save tomasstankovic/b44cd706ac293e93bd264f875bd53db1 to your computer and use it in GitHub Desktop.
Less compilation settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
production: { | |
options: { | |
plugins: [ | |
require(‘less-plugin-glob’), | |
new (require(‘less-plugin-autoprefix’))({ | |
browsers: [‘> 1%’, ‘last 2 versions’, ‘ie 9’] | |
}), | |
new (require(‘less-plugin-clean-css’))({ | |
keepSpecialComments: false, | |
processImport: true, | |
mediaMerging: true, | |
advanced: true | |
}) | |
] | |
}, | |
files: { | |
‘<%= path.build %>css/style.css’: ‘<%= path.css %>index.less’ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment