skip to Main Content

Html – tailwind not loading colors

Having simple html: public/index.html: <!DOCTYPE html> <html> <head> <link rel="stylesheet" href="styles.css"> </head> <body class="text-red-600"> some text </body> where the css was obtained from tailwindcss -i src/styles.css -o public/styles.css src/styles.css: @tailwind base; @tailwind components; @tailwind utilities; tailwind.config.js: module.exports = { content:…

VIEW QUESTION
Back To Top
Search