Files
grafana/emails/grunt/processhtml.js
T

13 lines
295 B
JavaScript
Raw Normal View History

module.exports = {
2020-08-11 17:52:44 +02:00
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.
},
],
},
};