open-codetree / tailwind.config.js
matt HOFFNER
init
3c3f089
raw
history blame
No virus
232 Bytes
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
animation: {
"pulse-slow": "pulse 3s linear infinite",
},
},
},
};