Hello,
Metronic runs well in local env ( 127.0.0.1:8000).
However in production env ( https://ovd3-test-clone227412.jcloud-ver-jpe.ik-server.com/) all statics files run well except SVG icons from the theme.py[Errno 2] No such file or directory: './static/media/icons/duotune/abstract/abs015.svg'
Any idea ?
Hi,
Django does not serve the static files in the production build. You can check here to deploy the static files on the server.
https://docs.djangoproject.com/en/4.1/howto/static-files/deployment/
Thanks