mirror of
https://github.com/komodorio/helm-dashboard.git
synced 2026-03-21 18:58:03 +00:00
* Updated Story book to the latest one * Updated tailwindcss related packages and config * Fixed Storybook * Added missed colors * Fixed CSS for the error dialog
13 lines
284 B
JavaScript
13 lines
284 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
"./node_modules/flowbite/**/*.js",
|
|
"./node_modules/flowbite-react/**/*.{js,jsx,ts,tsx}",
|
|
],
|
|
plugins: [
|
|
require("flowbite/plugin")
|
|
],
|
|
};
|