From ad8812ea367f3acb349fcd35e25b5bf28e591e44 Mon Sep 17 00:00:00 2001 From: Ruidy Nemausat Date: Tue, 3 Dec 2019 20:48:41 +0100 Subject: [PATCH] staticfiles --- villafleurie/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/villafleurie/settings.py b/villafleurie/settings.py index 4c128ee..4247176 100644 --- a/villafleurie/settings.py +++ b/villafleurie/settings.py @@ -120,7 +120,7 @@ if os.environ.get('ENV') == 'PRODUCTION': # Extra places for collectstatic to find static files. STATICFILES_DIRS = ( - os.path.join(PROJECT_ROOT, 'static'), + os.path.join(PROJECT_ROOT, 'staticfiles'), ) os.makedirs(STATIC_TMP, exist_ok=True)