mirror of
https://github.com/snowball-tools/snowballtools-base.git
synced 2024-11-17 20:39:19 +00:00
15 lines
404 B
JavaScript
15 lines
404 B
JavaScript
import withMT from '@material-tailwind/react/utils/withMT';
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default withMT({
|
|
content: [
|
|
'./src/**/*.{js,jsx,ts,tsx}',
|
|
'../../node_modules/@material-tailwind/react/components/**/*.{js,ts,jsx,tsx}',
|
|
'../../node_modules/@material-tailwind/react/theme/components/**/*.{js,ts,jsx,tsx}',
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
});
|