mirror of https://github.com/ColorlibHQ/AdminLTE
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
604 B
30 lines
604 B
// SASS compiler
|
|
|
|
'use strict';
|
|
|
|
module.exports = function (grunt) {
|
|
return {
|
|
development: {
|
|
options: {
|
|
precision: 6,
|
|
sourceComments: false,
|
|
sourceMap: true,
|
|
outputStyle: 'expanded'
|
|
},
|
|
files: {
|
|
'dist/css/adminlte.css': 'build/scss/AdminLTE.scss'
|
|
}
|
|
},
|
|
production: {
|
|
options: {
|
|
sourceComments: false,
|
|
sourceMap: true,
|
|
outputStyle: 'compressed'
|
|
},
|
|
files: {
|
|
'dist/css/adminlte.min.css': 'build/scss/AdminLTE.scss'
|
|
}
|
|
}
|
|
};
|
|
};
|