mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-25 05:35:48 +00:00
12 lines
238 B
JavaScript
12 lines
238 B
JavaScript
const baseConfig = require("../../tailwind.config.cjs")
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
...baseConfig,
|
|
content: [
|
|
...baseConfig.content,
|
|
"content/**/*.mdx",
|
|
"registry/**/*.{ts,tsx}",
|
|
],
|
|
}
|