grafana/emails/grunt/assemble.js
Gilles De Mey ea27eca147
Email: Use MJML email templates (#57751)
Co-authored-by: Santiago <santiagohernandez.1997@gmail.com>
2022-11-17 21:41:46 +01:00

18 lines
300 B
JavaScript

module.exports = function () {
'use strict';
return {
options: {
data: [],
flatten: true,
},
txt: {
options: {
layout: 'templates/partials/layout/default.txt',
ext: '.txt',
},
src: ['templates/*.txt'],
dest: 'dist/',
},
};
};