I have hundreds of html files that I'm serving up in my flask website.
all the static files are referenced like this within these html pages:
<img src="lig60.png" id="app-logo">
How do make sure the .png files load even though they are in the static folder without making any changes to the html files?
The reason I don't want to make changes to the html files themselves is because there are hundreds and I don't want to be doing a find and replace which seems like not a very elegant solution.
Thanks in advance