22 lines
627 B
TypeScript
22 lines
627 B
TypeScript
import withMT from "@material-tailwind/react/utils/withMT";
|
|
|
|
const config = withMT({
|
|
content: [
|
|
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./node_modules/tw-elements-react/dist/js/**/*.js",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
backgroundImage: {
|
|
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
|
|
"gradient-conic":
|
|
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
|
|
},
|
|
},
|
|
},
|
|
plugins: [require("tw-elements-react/dist/plugin.cjs")],
|
|
});
|
|
export default config;
|