mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 04:51:30 +01:00
10 lines
223 B
JavaScript
10 lines
223 B
JavaScript
import sharedConfig from "@repo/config-tailwind"
|
|
|
|
/** @type {Pick<import('tailwindcss').Config, "presets" | "content">} */
|
|
const config = {
|
|
content: ["./src/**/*.tsx"],
|
|
presets: [sharedConfig],
|
|
}
|
|
|
|
export default config
|