mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 21:19:28 -06:00
22 lines
461 B
JavaScript
22 lines
461 B
JavaScript
module.exports = function(config) {
|
|
|
|
return {
|
|
options: {
|
|
map: true, // inline sourcemaps
|
|
|
|
// or
|
|
map: {
|
|
inline: false, // save all sourcemaps as separate files...
|
|
annotation: '<%= genDir %>/css' // ...to the specified directory
|
|
},
|
|
|
|
processors: [
|
|
require('autoprefixer')({browsers: 'last 3 versions'}), // add vendor prefixes
|
|
]
|
|
},
|
|
dist: {
|
|
src: '<%= genDir %>/css/*.css'
|
|
}
|
|
}
|
|
};
|