There is a way to use TailwindCSS on this boilerplate ?
See original GitHub issueDescription
I am struggling to install/use TailwindCSS
I am using v1.2.4 updated to React 18.1.0, react-router 6.3.0 react-script 5.0.1 (everything works fine).
Steps to reproduce
> yarn create react-app --template cra-template-rb my-app
> cd my app
> yarn -D tailwindcss postcss autoprefixer
> yarn tailwindcss init -p
Add the following code to tailwind.config.js
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
Add the following declaration to src/styles/global-style.ts
@tailwind base;
@tailwind components;
@tailwind utilities;
Expected behavior
The css is not applied, css class are in the dom, but the tailwind’s css isn’t load.
Thank you for your help.
Issue Analytics
- State:
- Created a year ago
- Reactions:1
- Comments:8 (3 by maintainers)
Top Results From Across the Web
A bare-bones Tailwind CSS boilerplate - GitHub
It creates a simple HTML + CSS template with Tailwind CSS support, served by Parcel and using PurgeCSS in production builds.
Read more >Tailwind CSS + WordPress Theme & Block Type Boilerplate
Here's how I'm using Tailwind CSS in WordPress themes and blocks. My premium courses and coupons: https://learnwebcode.com/courses/GitHub ...
Read more >Installation - Tailwind CSS
The simplest and fastest way to get up and running with Tailwind CSS from scratch is with the Tailwind CLI tool.
Read more >Tailwind CSS - Rapidly build modern websites without ever ...
Utility classes help you work within the constraints of a system instead of littering your stylesheets with arbitrary values. They make it easy...
Read more >Install Tailwind CSS with Create React App
Create your project · Install Tailwind CSS · Configure your template paths · Add the Tailwind directives to your CSS · Start your...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

I think you forgot to include the
index.htmlin thepublicfolder into thecontentproperty of yourtailwind.config.jsthat is why your TailwindCSS did not work.Try to do it like this.
This is my
tailwind.config.jsin my personal project that I currently working on using the latest release of the boilerplate at the time of this response. I have no issues of tailwindcss in my end. Hope this helps.Also this my
devDependenciesinpackage.jsonI have the same issue and put together an example branch: https://github.com/Silthus/betonquest-editor/tree/issues/cra-boilerplate-tailwindcss