mirror of
https://github.com/YFGaia/dify-plus.git
synced 2026-06-04 10:14:00 +08:00
f2842da397
Co-authored-by: yyh <yuanyouhuilyz@gmail.com>
14 lines
290 B
JavaScript
14 lines
290 B
JavaScript
// import type { Config } from 'tailwindcss'
|
|
import commonConfig from './tailwind-common-config'
|
|
|
|
const config = {
|
|
content: [
|
|
'./app/**/*.{js,ts,jsx,tsx}',
|
|
'./components/**/*.{js,ts,jsx,tsx}',
|
|
'./context/**/*.{js,ts,jsx,tsx}',
|
|
],
|
|
...commonConfig,
|
|
}
|
|
|
|
export default config
|