summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCharles Roelli <charles@adnoto.net>2026-02-06 10:33:44 +0100
committerCharles Roelli <charles@adnoto.net>2026-02-06 10:33:44 +0100
commitada1d675ddda548800307f48a14a95062ced7efa (patch)
tree837102b2be3efcc97ab4ff444f213d29912f8a7f /src
parent951800fd37c5f77df8a011787be184de2731836d (diff)
Document all features, new output-directory option
Diffstat (limited to 'src')
-rw-r--r--src/hatch_django_collectstatic/plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hatch_django_collectstatic/plugin.py b/src/hatch_django_collectstatic/plugin.py
index 5f3ba68..ec3c4dd 100644
--- a/src/hatch_django_collectstatic/plugin.py
+++ b/src/hatch_django_collectstatic/plugin.py
@@ -18,7 +18,7 @@ class DjangoCollectstaticBuildHook(BuildHookInterface):
settings.configure(
INSTALLED_APPS=project_settings.INSTALLED_APPS,
- STATIC_ROOT="static",
+ STATIC_ROOT=self.config.get("output-directory", "static"),
STATIC_URL=project_settings.STATIC_URL,
)
setup()