usemin.js 208 B

1234567891011
  1. module.exports = function(config) {
  2. return {
  3. html: [
  4. '<%= destDir %>/views/index.html',
  5. '<%= destDir %>/index.html',
  6. ],
  7. options: {
  8. assetsDirs: ['<%= destDir %>']
  9. }
  10. };
  11. };