Skip to content

Instantly share code, notes, and snippets.

@tomasstankovic
Last active July 21, 2016 13:16
Show Gist options
  • Save tomasstankovic/b44cd706ac293e93bd264f875bd53db1 to your computer and use it in GitHub Desktop.
Save tomasstankovic/b44cd706ac293e93bd264f875bd53db1 to your computer and use it in GitHub Desktop.
Less compilation settings
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