aboutsummaryrefslogtreecommitdiff
path: root/src/main/webui/tailwind.config.js
blob: b75829a8760237c12015c8ada66f2bd157b1ecd4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import flowbite from "flowbite-react/tailwind";

/** @type {import('tailwindcss').Config} */
export default {
  darkMode: "media",
  content: [
    "./src/*.tsx",
    "./src/pages/*.tsx",
    "./src/components/*.tsx",
    flowbite.content(),
  ],
  theme: {
    extend: {},
  },
  plugins: [flowbite.plugin()],
};