Co-authored-by: Sean Brydon <sean@Seans-Mac-mini.local> Co-authored-by: Eunjae Lee <hey@eunjae.dev> Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: Hariom Balhara <hariombalhara@gmail.com>
12 lines
356 B
JavaScript
12 lines
356 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}",
|
|
"../../node_modules/@tremor/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
plugins: [...base.plugins, require("tailwindcss-animate")],
|
|
};
|