mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 12:14:08 -06:00
19 lines
349 B
JavaScript
19 lines
349 B
JavaScript
module.exports = function(config) {
|
|
return {
|
|
build: {
|
|
options:{
|
|
removeComments: true,
|
|
collapseWhitespace: true
|
|
},
|
|
expand: true,
|
|
cwd: '<%= genDir %>',
|
|
src: [
|
|
//'index.html',
|
|
'app/panels/**/*.html',
|
|
'app/partials/**/*.html'
|
|
],
|
|
dest: '<%= genDir %>'
|
|
}
|
|
};
|
|
};
|