how to set static file path in django in settings.py code example
Example: add static file in django
STATICFILES_DIRS = [
BASE_DIR / "static",
'/var/www/static/',
]
STATICFILES_DIRS = [
BASE_DIR / "static",
'/var/www/static/',
]