Replies: 1 comment 2 replies
-
Indeed, an input CSS file is required by the CLI. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi! I'm maintaining golang project and I use tailwind in html templates. With version v3.4.17 I could run
tailwindcss -o $(STYLESHEET_MIN) --minify
in my Makefile, provided I hadtailwind.config.js
file with the following content:But this approach does not seem to work in version 4. I'm forced to provide input file with
-i
flag. I could live with it but only one file at the time can be provided this way, forcing me to use some other CSS preprocessing tool together with tailwind. Is there a way for me to upgrade without complicating build process by including additional tooling/dependencies?Beta Was this translation helpful? Give feedback.
All reactions