mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-21 11:30:27 -05:00
15dc83a4eb
Co-authored-by: Matti Nannt <matti@formbricks.com> Co-authored-by: Johannes <johannes@formbricks.com> Co-authored-by: pandeymangg <anshuman.pandey9999@gmail.com>
16 lines
329 B
JavaScript
16 lines
329 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
import surveyUi from "../../packages/survey-ui/tailwind.config";
|
|
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
"../../packages/survey-ui/src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
...surveyUi.theme?.extend,
|
|
},
|
|
},
|
|
};
|