I recently started learning Tailwind. I installed tailwind step by step as tailwind website said. After that when I write on VSCode Terminal npm run start.
How to solve this? Shows some error. What should I do next step to solve this?
I recently started learning Tailwind. I installed tailwind step by step as tailwind website said. After that when I write on VSCode Terminal npm run start.
How to solve this? Shows some error. What should I do next step to solve this?
you can create react project with tailwind from strart like this:
npm create vite@latest my-project -- --template reactcd my-projectnpm installnpm install -D tailwindcss postcss autoprefixernpx tailwindcss init -p["./index.html", "./src/**/*.{js,jsx,ts,tsx}"]@tailwind base; @tailwind components; @tailwind utilities;