70d2b1b52d
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
8 lines
170 B
TypeScript
8 lines
170 B
TypeScript
import type { Config } from 'tailwindcss';
|
|
const config: Config = {
|
|
content: ['./src/**/*.{ts,tsx}'],
|
|
theme: { extend: {} },
|
|
plugins: [],
|
|
};
|
|
export default config;
|