* refactor: replace tremor with recharts * update tooltip * clean up types * replace tremor with recharts * replace BarList with recharts * replace ProgressBar * remove tremor from the repository * clean up * fix UserStatsTable * fix type error * add explicit return type
8 lines
288 B
JavaScript
8 lines
288 B
JavaScript
const base = require("@calcom/config/tailwind-preset");
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
...base,
|
|
content: [...base.content, "../../packages/app-store/routing-forms/**/*.{js,ts,jsx,tsx}"],
|
|
plugins: [...base.plugins, require("tailwindcss-animate")],
|
|
};
|