aboutsummaryrefslogtreecommitdiff
path: root/tailwind.config.js
blob: 1a05011fdfb5fa16dea19bd8fc10071fbdf52d3b (plain)
1
2
3
4
5
6
7
8
/** @type {import('tailwindcss').Config} */
module.exports = {
  content: ['./pages/**/*.{js,ts,jsx,tsx}', './src/**/*.{js,ts,jsx,tsx}'],
  theme: {
    extend: {}
  },
  plugins: [require('daisyui')]
}