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