Configure Tailwind CSS source scanning for multiple apps
masterTailwind CSS needs to know which files to scan for class names. By default, the generated theme/static_src/src/styles.css uses an @source directive that points to the project root, covering all HTML, Python, and JavaScript files.
If your project uses a non-standard layout (e.g., apps are nested in an apps/ or src/ directory) and the default scanning isn't working, you can explicitly define @source paths in theme/static_src/src/styles.css.
To verify if your templates are being detected, run:
python manage.py tailwind buildThen check if the classes from your app templates appear in the generated CSS output.