Answers for "django static_root staticfiles_dirs"

CSS
2

set django static root

# Setting Static Root
STATIC_ROOT = os.path.join(BASE_DIR, "static/")
Posted by: Guest on September-16-2021
9

static dirs django

STATICFILES_DIRS = [
    BASE_DIR / "static",
    '/var/www/static/',
]
Posted by: Guest on November-25-2020

Code answers related to "django static_root staticfiles_dirs"

Browse Popular Code Answers by Language