Answers for "how make static folder at root direct in django"

3

set django static root

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

static dirs django

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

Python Answers by Framework

Browse Popular Code Answers by Language