Support for Tailwind and JIT mode #140
-
Would there or is there any support for CSS libraries like tailwindcss? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi @hsheikhali1. Absolutely yes. Let me know if it works for you. |
Beta Was this translation helpful? Give feedback.
-
Tailwind CSS support will land in For now
Don't forget to import your global CSS file to jest setup file, for example: // setupTest.js
import "./index.css"; // contains @tailwind base; @tailwind components; @tailwind utilities; Please let me know if you guys spot any bugs. Thanks. |
Beta Was this translation helpful? Give feedback.
Hi @hsheikhali1. Absolutely yes.
We will support TailwindCSS in the next release. Hopefully it will be out by the end of this month.
In the mean time, you can do a work around by exporting the CSS and import it to jest setup file. You can see the full instruction here:
#127 (comment)
Let me know if it works for you.