diff options
author | HombreLaser <sebastian-440@live.com> | 2023-04-26 20:51:29 -0600 |
---|---|---|
committer | HombreLaser <sebastian-440@live.com> | 2023-04-26 20:51:29 -0600 |
commit | 70db52d02dfe5da7397e5ba801b01739a5d0ceaa (patch) | |
tree | e744d3a446872e93d64fbe10c03c75103217d2c3 | |
parent | 07ca16f41c53eccf4a9b959bd4e4656a987d8199 (diff) |
Añade flowbite
-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') + ] } |