mirror of
https://github.com/trailbaseio/trailbase.git
synced 2026-01-06 01:40:12 -06:00
12 lines
375 B
TypeScript
12 lines
375 B
TypeScript
import animate from "tailwindcss-animate";
|
|
import typography from "@tailwindcss/typography";
|
|
import type { Config } from "tailwindcss";
|
|
|
|
import { commonTailwindConfig } from "../styles/tailwind.config.mjs";
|
|
|
|
export default {
|
|
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,ts,tsx}"],
|
|
presets: [commonTailwindConfig],
|
|
plugins: [animate, typography],
|
|
} satisfies Config;
|