Debugging tailwind
- I was using the CDN for convenience, HTML renders perfectly
- But CDN is large, so I removed it to switch to
npm run build instead
- But the app.css produced by
npm run build makes the HTML render incorrectly
- How do I get
npm run build to list out all the files that tailwind scanned?
npm run build does this automatically.
Why do you think that the app.css is incorrectly formed ?
app.css is not the output file while building the manifest.
You probably don't declare the right files in your HTML head.
Are you using Laravel ?
Sorry, I didn't realize ... npm run build is useful only when you install TailwindCSS locally.
If you are using the CND, you don't need to run npm run build.
Please or to participate in this conversation.