15 lines
365 B
JavaScript
15 lines
365 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
content: [
|
||
|
"./app/**/*.{js,jsx,ts,tsx}",
|
||
|
"./components/**/*.{js,jsx,ts,tsx}",
|
||
|
"./constants/**/*.{js,jsx,ts,tsx}",
|
||
|
"./hooks/**/*.{js,jsx,ts,tsx}",
|
||
|
// Add more directories here if you plan to use Tailwind classes in more places
|
||
|
],
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [],
|
||
|
}
|