mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 01:16:31 -06:00
17 lines
285 B
JavaScript
17 lines
285 B
JavaScript
module.exports = function(config) {
|
|
return {
|
|
build: {
|
|
options:{
|
|
removeComments: true,
|
|
collapseWhitespace: true
|
|
},
|
|
expand: true,
|
|
cwd: '<%= genDir %>',
|
|
src: [
|
|
'app/**/*.html',
|
|
],
|
|
dest: '<%= genDir %>'
|
|
}
|
|
};
|
|
};
|