I have a html page in my Google app engine project. I have stored an image titled “image.jpg” under a folder titled “images” which is under the project folder.
I’m trying to load the image in my html code with this:
<img width=150 src="~/images/image.jpg">
However I get the following warning and the image is not displayed on the page:
WARNING: No file found for: /~/images/image.jpg
How do I fix this?
in your app.yaml file you need a handler for images
and then
<img width=150 src="/images/image.jpg">provided that you are using python and not java or go