mirror of
https://github.com/tale/headplane.git
synced 2026-07-26 15:58:14 +00:00
11 lines
162 B
TypeScript
11 lines
162 B
TypeScript
import type { Config } from 'tailwindcss'
|
|
|
|
export default {
|
|
content: ['./app/**/*.{js,jsx,ts,tsx}'],
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
plugins: []
|
|
} satisfies Config
|
|
|