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