indexPage.js 360 B

12345678910111213
  1. module.exports = function indexPageProcessor(){
  2. return{
  3. $runBefore:['rendering-docs'],
  4. $runAfter:['componentsDataProcessor'],
  5. $process:function(docs){
  6. docs.push({
  7. template:'index.template.html',
  8. outputPath:'index.html',
  9. path:'index.html'
  10. })
  11. }
  12. }
  13. };