CSS
- 5 ответов
- 0 вопросов
7
Вклад в тег
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"
}
}
},