Reputation: 1192
I'm searching since a little time now how to use my images that are in the folder /public/images/myImg.png
There is my Javascript code (I have tried without '..' with '/public...'):
/imports/ui/body.html
<div id="logoG">
<img src= "../public/images/logo.png"/>
</div>
And that's the structure of my project:
Upvotes: 0
Views: 38
Reputation: 5413
I don't think you need the 'public' prefix
<img src= "/images/logo.png"/>
Upvotes: 2