We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 441f09b commit 9e3ea20Copy full SHA for 9e3ea20
1 file changed
fortytwo_test_task/settings/common.py
@@ -112,7 +112,13 @@
112
# Always use forward slashes, even on Windows.
113
# Don't forget to use absolute paths, not relative paths.
114
os.path.join(BASE_DIR, 'assets'),
115
- os.path.join(BASE_DIR, 'apps/home/static'),
+ os.path.join(BASE_DIR, 'apps/hello/static'),
116
+)
117
+
118
+# Static files fix
119
+STATICFILES_FINDERS = (
120
+ 'django.contrib.staticfiles.finders.FileSystemFinder',
121
+ 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
122
)
123
124
0 commit comments