Here is my folder structure:
dash-apps:
- apps
- start_app.py
- assets
- Logo.png
- images
- scr
I am currently writing my code on this directory apps/start_app.py
Using
html.Img(src="../assets/Logo.png", height="35px", alt="say something")
Does not display my Logo. I need to use a relative path because my code will be going on production. Kindly advise.
Thanks