replace.js 186 B

12345678910111213
  1. module.exports = {
  2. dist: {
  3. overwrite: true,
  4. src: ['dist/*.html'],
  5. replacements: [{
  6. from: '[[',
  7. to: '{{'
  8. }, {
  9. from: ']]',
  10. to: '}}'
  11. }]
  12. }
  13. };