I am trying to add the image to my page:
<td>
<img src="{{ url_for('images', filename='test.png') }}">Test
</td>
But I am getting this error when I run my flask server:
raise BuildError(endpoint, values, method)
BuildError: ('images', {'filename': 'test.png'}, None)
I have added test.png
in images
directory.