Hi,
It seems like the static files are not being served properly.Ensure that you have defined a route for the root URL ("/") in your Flask application. This is typically done using the @app.route('/')
decorator in your Flask application code.
Here's an example:
from flask import Flask
app = Flask(__name__)
@app.route('/')
def index():
return 'Hello, World!'
if __name__ == '__main__':
app.run()
Once you have made the changes, you can redeploy your app and try accessing the image again.
Let me know if this helps!