grunt angularjs doesn't process video files

Posted by Daly on Stack Overflow See other posts from Stack Overflow or by Daly
Published on 2014-08-24T22:16:14Z Indexed on 2014/08/24 22:20 UTC
Read the original article Hit count: 211

Filed under:

I've set up my grunt file to copy, minify, uglify, revved and all that. It works fine with all media I use, except that recently I added a video to an html file, but it's not being copied to /dist, nor is the html being updated with the versioned file (that is not being copied nor revved). Not sure what I'm missing. Here is the html fragment:

<div class="col-xs-4">
  <div class="row flowplayer">
    <video autoplay>
      <source type="video/mp4" src="/videos/wedding_planners_bride_smallweb.mp4">
    </video>
  </div>
</div>

What do I need to add to my gruntfile.js file to process /videos the same way /images are just working out of the box?

Thanks

© Stack Overflow or respective owner

Related posts about gruntjs