summaryrefslogtreecommitdiff
path: root/tailwind.config.js
blob: 574d9d33632ec6c2e51948d0e6e3119e771a57af (plain)
1
2
3
4
5
6
7
8
9
10
11
/** @type {import('tailwindcss').Config} */
module.exports = {
  content: [
   "./pages/**/*.{js,ts,jsx,tsx}",
   "./components/**/*.{js,ts,jsx,tsx}",
  ],
  theme: {
    extend: {},
  },
  plugins: [],
}