Tech_Tracker_Expo/tailwind.config.js
2024-08-05 10:20:06 -05:00

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: [],
}