Skip to content

Instantly share code, notes, and snippets.

@codewithleader
Created November 5, 2023 18:48
Show Gist options
  • Save codewithleader/84e3945f17d1776712c3bc359623e65f to your computer and use it in GitHub Desktop.
Save codewithleader/84e3945f17d1776712c3bc359623e65f to your computer and use it in GitHub Desktop.
tailwindcss: Configuracion basica en React del archivo tailwind.config.js
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}"
],
theme: {
extend: {},
},
plugins: [],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment