summaryrefslogtreecommitdiff
path: root/themes/pehtheme/exampleSite/tailwind.config.js
blob: 3fe0bfe608b82c9e2d1b8f854ff45ab7c1cbceca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/** @type {import('tailwindcss').Config} */
module.exports = {
  content: [
      "content/**/*.md",
      "./themes/pehtheme-hugo/**/*.{html,js}"
    ],
  theme: {
    extend: {},
  },
  plugins: [
    require('@tailwindcss/typography')
    ],
}