mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
11 lines
281 B
JavaScript
11 lines
281 B
JavaScript
module.exports = {
|
|
dist: {
|
|
files: [{
|
|
expand: true, // Enable dynamic expansion.
|
|
cwd: 'dist', // Src matches are relative to this path.
|
|
src: ['*.html'], // Actual pattern(s) to match.
|
|
dest: 'dist/', // Destination path prefix.
|
|
}],
|
|
}
|
|
};
|