diff options
-rw-r--r-- | package.json | 2 | ||||
-rw-r--r-- | tailwind.config.js | 8 |
2 files changed, 8 insertions, 2 deletions
diff --git a/package.json b/package.json index 261aa93..a5e8f47 100644 --- a/package.json +++ b/package.json @@ -11,6 +11,8 @@ }, "dependencies": { "axios": "^1.3.6", + "flowbite": "^1.6.5", + "flowbite-react": "^0.4.4", "react": "^18.2.0", "react-bootstrap-icons": "^1.10.3", "react-dom": "^18.2.0", diff --git a/tailwind.config.js b/tailwind.config.js index ab4c580..beb3937 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -3,8 +3,12 @@ export default { content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", - "./node_modules/tw-elements/dist/js/**/*.js" + "./node_modules/tw-elements/dist/js/**/*.js", + "node_modules/flowbite-react/**/*.{js,jsx,ts,tsx}" ], - plugins: [require("tw-elements/dist/plugin.cjs")], + plugins: [ + require("tw-elements/dist/plugin.cjs"), + require('flowbite/plugin') + ] } |