assemble.js 336 B

12345678910111213141516
  1. module.exports = function() {
  2. 'use strict';
  3. return {
  4. options: {
  5. layout: 'templates/layouts/default.html',
  6. partials: ['templates/partials/*.hbs'],
  7. helpers: ['templates/helpers/**/*.js'],
  8. data: [],
  9. flatten: true
  10. },
  11. pages: {
  12. src: ['templates/*.html'],
  13. dest: 'dist/'
  14. }
  15. };
  16. };