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