Files
clan-core/pkgs/ui/tailwind.config.js
2023-08-06 17:31:44 +02:00

17 lines
334 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
corePlugins: {
preflight: false,
},
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
important: "#__next",
theme: {
extend: {},
},
plugins: [],
};