aboutsummaryrefslogtreecommitdiffstats
path: root/apps/browser-extension/tailwind.config.js
blob: 1c0c7c8744cf30f63ee016cb846d76de032018e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
/** @type {import('tailwindcss').Config} */
const tailwindConfig = {
  content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
  theme: {
    extend: {},
  },
  plugins: [],
};

export default tailwindConfig;