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