summaryrefslogtreecommitdiffstats
path: root/ui/tailwind.config.js
blob: 804b7f049a036586c5d7256bf614a51d2087f4aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/** @type {import('tailwindcss').Config} */
module.exports = {
  content: [
    "./*.html",
    "./*.js",
    "./src/**/*.{html,js}"
  ],
  theme: {
    extend: {},
  },
  plugins: [],
}