mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-15 08:33:13 +01:00
14 lines
318 B
JavaScript
14 lines
318 B
JavaScript
import sharedConfig from "@repo/config-tailwind"
|
|
|
|
/** @type {Pick<import('tailwindcss').Config, "presets" | "content">} */
|
|
const config = {
|
|
content: [
|
|
".storybook/preview.tsx",
|
|
"../../packages/ui/src/**/*.tsx",
|
|
"../../packages/blog/src/**/*.tsx",
|
|
],
|
|
presets: [sharedConfig],
|
|
}
|
|
|
|
export default config
|