user5266396
user5266396

Reputation:

HTML img tags won't work in meteor

Its pretty simple, I've looked everywhere and no one has a solution for it. Basically, The html img tags don't seem to work.

<img src="../client/app/public/genolagana.jpg" alt="Profile Picture" height="42" width="42"> 

That's my code, And yes, The picture is in the correct file location that I have specified. Thank you in advance!

Upvotes: 1

Views: 91

Answers (1)

Michel Floyd
Michel Floyd

Reputation: 20236

Assets are not served from /client, put images under /public/ and just refer to them there with /public mapping to /

Upvotes: 4

Related Questions