@import "../../bower_components/bootstrap/less/bootstrap.less";
@import 'base/config_global.less';
less: {
development: {
options: {
compress: true //minifying the result
},
files: {
//compiling frontend.less into frontend.css
"<%= DestPath %>/css/style.css": "<%= SourcesPath %>/less/style.less",
"<%= DestPath %>/css/bootstrap.css": "<%= SourcesPath %>/less/bootstrap.less"
//compiling backend.less into backend.css
"<%= DestPath %>/css/backend.css":"<%= SourcesPath %>/less/backend.less"
}
}
},