I am pretty new to Tailwind and CSS as a whole and am trying to build this CSS file:
@tailwind base;
@tailwind components;
@tailwind utilities;
.btn{
@apply rounded-full py-2 px-3 uppercase text-xs font-bold cursor-pointer tracking-wider
}
With this command
npm run build-css
But I get this response
> [email protected] build-css C:\Users\user\Tailwind\project
> tailwindcss build src/styles.css -o public/styles.css
[deprecation] Running tailwindcss without -i, please provide an input file.
Done in 3220ms.
And nothing happens. How do I specify the input file?