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