generator-backbone
generator-backbone copied to clipboard
image src in ejs template is not updated when building project.
when an image tag is inside an ejs template.
<img src="images/logo.png" alt="" class="logo">
their src attribute is not updated with minified file name when builded
you can try like this:
<img src="<%= require('images/logo.png') %>" alt="" class="logo">