11 lines
246 B
JavaScript
11 lines
246 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
const withMT = require("@material-tailwind/react/utils/withMT");
|
|
|
|
module.exports = withMT({
|
|
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
});
|