mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08:00
7a1d6fe509
Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: JzoNg <jzongcode@gmail.com>
13 lines
289 B
JavaScript
13 lines
289 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
|