pronounsfu/frontend/tailwind.config.js

12 lines
250 B
JavaScript
Raw Normal View History

2022-05-10 07:33:29 -07:00
module.exports = {
darkMode: "class",
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
2022-05-10 07:33:29 -07:00
theme: {
extend: {},
},
2022-05-14 07:46:03 -07:00
plugins: [require("@tailwindcss/typography"), require("@tailwindcss/forms")],
2022-05-10 07:33:29 -07:00
};