diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-03-27 11:46:10 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-03-27 11:46:10 +0700 |
| commit | 55c563addd62a04e3ce8d3700d3c82e389f9d52c (patch) | |
| tree | 25c28c71b339f12f89812c4556e27732f74bc0cf /tailwind.config.js | |
| parent | 9ff605683cfc814bee9a49525bb0856ec28ab17e (diff) | |
| parent | e77ab00b04426f85d04d211f5ab4a511e754ed4f (diff) | |
Merge branch 'master' of bitbucket.org:altafixco/next-indoteknik
Diffstat (limited to 'tailwind.config.js')
| -rw-r--r-- | tailwind.config.js | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/tailwind.config.js b/tailwind.config.js index 95570311..f4335eb8 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,6 +1,12 @@ /** @type {import('tailwindcss').Config} */ -module.exports = { - content: ['./src/**/*.{js,ts,jsx,tsx}'], +const withMT = require("@material-tailwind/react/utils/withMT"); +module.exports = withMT({ + content: [ + "./node_modules/flowbite-react/**/*.js", + './src/**/*.{js,ts,jsx,tsx}'], + plugins: [ + require("flowbite/plugin") + ], theme: { extend: { container: { @@ -103,4 +109,4 @@ module.exports = { } }, plugins: [require('@tailwindcss/line-clamp'), require('@tailwindcss/typography')] -} +}) |
