-
Notifications
You must be signed in to change notification settings - Fork 315
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: use stable tailwind
flag
#195
feat: use stable tailwind
flag
#195
Conversation
Tested this change locally and it works perfectly 🥳 |
@runmoore careful, you loose the autoprefixer that came free with tailwind |
Sorry, I'm not sure what you mean. Could you elaborate? I thought this would be a no brainier, maybe I'm wrong? |
@runmoore juste a little inconvenience, that could be solved manually. Check this for more context: remix-run/remix#5475 |
41691ee
to
5730804
Compare
5730804
to
91eca10
Compare
91eca10
to
8d39d21
Compare
I think we should wait until future flags stabilize into a |
1fe99bb
to
dbfb9bb
Compare
dbfb9bb
to
ba8c8ff
Compare
unstable_tailwindcss
flagtailwindcss
flag
ba8c8ff
to
3e23c21
Compare
tailwindcss
flagtailwind
flag
can we add a module.exports = {
plugins: [require("autoprefixer")],
}; and add |
3e23c21
to
2663e88
Compare
Just confirming, we have to wait until we release |
@brophdawg11 That's correct. |
0568b53
to
28b415c
Compare
28b415c
to
9b284a2
Compare
@@ -0,0 +1,6 @@ | |||
module.exports = { | |||
plugins: { | |||
tailwindcss: {}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just wondering, why was tailwindcss added to the PostCSS configuration as well? Wasn't the fix only to add autoprefixer?
See remix-run/remix#5960