apps/web/tailwind.config.ts
Metadata
- Purpose: Source artifact in the anchor-msp system.
- Domain:
applications - Language:
ts - Bytes: 246
- Lines: 12
- Content hash (short):
adee1b87 - Source (start): apps/web/tailwind.config.ts:1
- Source (end): apps/web/tailwind.config.ts:12
Indexed Symbols
No indexed functions/methods detected in this file.
Markdown Headings (if applicable)
No markdown headings detected.
Source Preview
import type { Config } from "tailwindcss";
const config: Config = {
content: ["./app/**/*.{ts,tsx}", "./components/**/*.{ts,tsx}", "../../packages/ui/src/**/*.{ts,tsx}"],
theme: {
extend: {}
},
plugins: []
};
export default config;