aboutsummaryrefslogtreecommitdiffstats
path: root/sanity/tailwind.config.js
blob: 92a1e3a4bdf08b332054113b72cded052883169a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module.exports = {
  content: [
    './pages/**/*.{js,ts,jsx,tsx}',
    './components/**/*.{js,ts,jsx,tsx}',
    './app/**/*.{js,ts,jsx,tsx}',
  ],
  theme: {
    extend: {},
  },
  plugins: [],
}