2023-01-22 15:39:35 -06:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
2023-05-28 12:22:01 -05:00
|
|
|
|
2023-01-22 15:39:35 -06:00
|
|
|
module.exports = {
|
|
|
|
content: [
|
|
|
|
"./app/**/*.{js,ts,jsx,tsx}",
|
|
|
|
"./pages/**/*.{js,ts,jsx,tsx}",
|
|
|
|
"./components/**/*.{js,ts,jsx,tsx}",
|
2023-05-28 12:22:01 -05:00
|
|
|
|
|
|
|
// For the "layouts" directory
|
|
|
|
"./layouts/**/*.{js,ts,jsx,tsx}",
|
2023-01-22 15:39:35 -06:00
|
|
|
],
|
|
|
|
theme: {
|
|
|
|
extend: {},
|
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
};
|