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