mirror of
https://github.com/skidoodle/erettsegi-browser.git
synced 2025-02-15 05:39:15 +01:00
20 lines
363 B
TypeScript
20 lines
363 B
TypeScript
import type { Config } from 'tailwindcss'
|
|
import { nextui } from '@nextui-org/react'
|
|
|
|
const config: Config = {
|
|
content: [
|
|
'./src/**/*.tsx',
|
|
'./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}',
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
darkMode: 'class',
|
|
plugins: [
|
|
nextui({
|
|
addCommonColors: true,
|
|
}),
|
|
],
|
|
}
|
|
|
|
export default config
|