This is only a warning that you don't use any tailwindcss utility classes in your project. If you remove @tailwind utilities; from your .css-File, the warning is gone.
like so:
@tailwind base;
@tailwind components;
// @tailwind utilities;
You can remove the comment when you use utility classes from tailwind. for example:
<div class="shadow-md ..."></div>