grafana/emails/grunt/replace.js

17 lines
221 B
JavaScript
Raw Normal View History

module.exports = {
dist: {
overwrite: true,
src: ['dist/*.html'],
replacements: [
{
from: '[[',
to: '{{',
},
{
from: ']]',
to: '}}',
},
],
},
};