@@ -0,0 +1,21 @@
|
||||
module.exports = function(config) {
|
||||
|
||||
return {
|
||||
options: {
|
||||
map: true, // inline sourcemaps
|
||||
|
||||
// or
|
||||
map: {
|
||||
inline: false, // save all sourcemaps as separate files...
|
||||
annotation: 'dist/css/maps/' // ...to the specified directory
|
||||
},
|
||||
|
||||
processors: [
|
||||
require('autoprefixer')({browsers: 'last 2 versions'}), // add vendor prefixes
|
||||
]
|
||||
},
|
||||
dist: {
|
||||
src: '<%= genDir %>/css/*.css'
|
||||
}
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user