mirror of
https://github.com/grafana/grafana.git
synced 2025-08-06 20:59:35 +08:00
18 lines
331 B
JavaScript
18 lines
331 B
JavaScript
module.exports = function(config) {
|
|
return {
|
|
options: {
|
|
encoding: 'utf8',
|
|
algorithm: 'md5',
|
|
length: 8,
|
|
},
|
|
css: {
|
|
src: '<%= destDir %>/css/default.min.css',
|
|
dest: '<%= destDir %>/css'
|
|
},
|
|
js: {
|
|
src: '<%= destDir %>/app/app.js',
|
|
dest: '<%= destDir %>/app'
|
|
}
|
|
};
|
|
};
|