Images are not displaying on blog, after deploying on pythonanywhere
I have deployed my blog on PythonAnywhere by using the following settings in the project-level folder and in the PythonAnywhere static files. But images are not displaying on blog posts after deploying???
path in project-level directory
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
# Media files (uploaded images)
MEDIA_URL = '/media/'
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
static files path on PythonAnywhere