mirror of
https://github.com/SrIzan10/hctv.git
synced 2026-06-06 00:56:56 +00:00
21 lines
394 B
TypeScript
21 lines
394 B
TypeScript
import { uploadthingPlugin } from 'uploadthing/tw';
|
|
import type { Config } from 'tailwindcss';
|
|
|
|
const config = {
|
|
darkMode: 'class',
|
|
content: ['./src/**/*.{ts,tsx}'],
|
|
prefix: '',
|
|
theme: {
|
|
container: {
|
|
center: true,
|
|
padding: '2rem',
|
|
screens: {
|
|
'2xl': '1400px',
|
|
},
|
|
},
|
|
},
|
|
plugins: [uploadthingPlugin],
|
|
} satisfies Config;
|
|
|
|
export default config;
|