| 123456789101112131415161718192021 |
- 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'
- }
- }
- };
|