STATICFILES_DIRS can be a list of tuples to add a prefix for static files: https://docs.djangoproject.com/en/5.2/ref/settings/#prefixes-optional.
However, that causes the following TypeError: argument should be a str or an os.PathLike object where __fspath__ returns a str, not 'tuple' error.
I think
|
dist_css = Path(settings.STATICFILES_DIRS[0]) / dist_css_base |
can check for a
tuple and handle that specifically? If that makes sense I can make a PR, but wanted to check first before I do that!
STATICFILES_DIRScan be a list of tuples to add a prefix for static files: https://docs.djangoproject.com/en/5.2/ref/settings/#prefixes-optional.However, that causes the following
TypeError: argument should be a str or an os.PathLike object where __fspath__ returns a str, not 'tuple'error.I think
django-tailwind-cli/src/django_tailwind_cli/config.py
Line 151 in 8096a46
tupleand handle that specifically? If that makes sense I can make a PR, but wanted to check first before I do that!