mirror of
https://github.com/formbricks/formbricks.git
synced 2026-03-20 09:20:49 -05:00
15 lines
260 B
JavaScript
15 lines
260 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
important: "#fbjs",
|
|
darkMode: "class",
|
|
corePlugins: {
|
|
preflight: false,
|
|
},
|
|
content: ["./src/**/*.{tsx,ts,jsx,js}"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
prefix: "fb-",
|
|
plugins: [],
|
|
};
|