processhtml.js 286 B

12345678910
  1. module.exports = {
  2. dist: {
  3. files: [{
  4. expand: true, // Enable dynamic expansion.
  5. cwd: 'templates', // Src matches are relative to this path.
  6. src: ['*.html'], // Actual pattern(s) to match.
  7. dest: 'dist/', // Destination path prefix.
  8. }],
  9. }
  10. };