Files
grafana/emails/grunt/replace.js
T

17 lines
221 B
JavaScript
Raw Normal View History

module.exports = {
2020-08-11 17:52:44 +02:00
dist: {
overwrite: true,
src: ['dist/*.html'],
2020-08-11 17:52:44 +02:00
replacements: [
{
from: '[[',
to: '{{',
},
{
from: ']]',
to: '}}',
},
],
},
};