summaryrefslogtreecommitdiffhomepage
path: root/client/web/tailwind.config.js
blob: 1ec9c51c2db60e02c23a7c145e0335a9f31a13e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/** @type {import('tailwindcss').Config} */
module.exports = {
  content: [
    "./index.html",
    "./src/**/*.{js,ts,jsx,tsx}",
  ],
  theme: {
    extend: {},
  },
  plugins: [],
}