I have properly configured but can't figure out why tailwind is not properly running on at home.html
//demo/mysite/setting.py
STATIC_URL = 'static/'
STATIC_ROOT = BASE_DIR / 'static'
STATICFILES_DIRS = ['mysite/static']
# Media Files configuration
MEDIA_URL = '/media/'
MEDIA_ROOT = BASE_DIR / 'media'
output.css has values but it seems to not compile new classes.
//demo/templates/home.html
<section class="flex items-center justify-center mt-10">
<div class="w-full max-w-2xl shadow-md rounded-lg overflow-hidden">
<table class="w-full text-sm text-left text-gray-700">
<thead class="text-xs text-red-500 uppercase bg-green-700">
<tr>
<th scope="col" class="px-6 py-3">#</th>
<th scope="col" class="px-6 py-3">First</th>
<th scope="col" class="px-6 py-3">Last</th>
<th scope="col" class="px-6 py-3">Handle</th>
</tr>
</thead>
<tbody>
<tr class="bg-white border-b hover:bg-green-50 transition-colors">
<th scope="row" class="px-6 py-4 font-medium text-gray-900">3</th>
<td class="px-6 py-4">Larry</td>
<td class="px-6 py-4">the Bird</td>
<td class="px-6 py-4 text-green-600 font-medium">@twitter</td>
</tr>
</tbody>
</table>
</div>
</section>