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