1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-10-05 21:16:09 +02:00
.profile/apps/website/tailwind.config.js

10 lines
256 B
JavaScript
Raw Normal View History

import sharedConfig from "@repo/config-tailwind"
/** @type {Pick<import('tailwindcss').Config, "presets" | "content">} */
const config = {
2024-09-11 23:53:26 +02:00
content: ["./app/**/*.tsx", "../../packages/*/src/**/*.tsx"],
presets: [sharedConfig],
}
export default config