Adding image to Dash Multipage

Hi @apfelmuse

Try putting the assets/ folder in the root directory

- app.py
- assets
   |-- page1.PNG
- pages
   |-- __init__.py
   |-- page1.py
   |-- page2.py

The pages/ plug-in will automatically use the image to create the meta tags for page1.py. You can also access the image in the normal way as described in this post https://community.plotly.com/t/how-to-embed-images-into-a-dash-app/

1 Like