I'm creating webapp by using Flask on backend and HTML, CSS, Bootstrap 4 on frontend and havenot using a single line of code of javascript. My flask app code is:
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def index():
return render_template('index.html')
if __name__ == '__main__':
app.run(debug=True)
But, the issue is when I add an image in HTML code it works completely fine. But if I replace the file in directory with same name but when I preview it in browser while coding it shows the old picture. I'm using Bootstrp 4.6
The image code inside a simple div is:
<img class="img-fluid" src="/static/about.svg" alt="Students">