mirror of
https://github.com/grafana/grafana.git
synced 2024-11-30 04:34:23 -06:00
10 lines
174 B
JavaScript
10 lines
174 B
JavaScript
|
module.exports = function(config) {
|
||
|
return {
|
||
|
build: {
|
||
|
expand: true,
|
||
|
cwd: '<%= tempDir %>',
|
||
|
src: '**/*.css',
|
||
|
dest: '<%= tempDir %>'
|
||
|
}
|
||
|
};
|
||
|
};
|