Skip to content

Commit 85c34eb

Browse files
committed
Update missed STATICFILES_STORAGE reference
Fixes #651. Missed in #614.
1 parent efea2ea commit 85c34eb

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

docs/django.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,12 @@ storage backend for the Django one:
598598

599599
.. code-block:: python
600600
601-
STATICFILES_STORAGE = "django.contrib.staticfiles.storage.ManifestStaticFilesStorage"
601+
STORAGES = {
602+
# ...
603+
"staticfiles": {
604+
"BACKEND": "django.contrib.staticfiles.storage.ManifestStaticFilesStorage",
605+
},
606+
}
602607
603608
If the problems persist then your issue is with Django itself (try the docs_ or
604609
the `mailing list`_). If the problem only occurs with WhiteNoise then raise a

0 commit comments

Comments
 (0)