Skip to content

Latest commit

 

History

History
29 lines (15 loc) · 920 Bytes

File metadata and controls

29 lines (15 loc) · 920 Bytes

Tailwind setup

Follow steps from this link:

{% embed url="https://tailwindcss.com/docs/installation" %}

this will create this file:

change the insights:

Add those to index.css

Bug with Tailwind:

So I encountered a bug with Tailwind implementation.

  1. postcss.config.js -> rename to .cjs Should look like this:

module.exports = { plugins: { tailwindcss: { content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'] }, }, }