mirror of
https://github.com/langgenius/dify.git
synced 2026-03-19 13:47:37 +08:00
17 lines
428 B
JavaScript
17 lines
428 B
JavaScript
// import type { Config } from 'tailwindcss'
|
|
import commonConfig from './tailwind-common-config.ts'
|
|
|
|
const config = {
|
|
content: [
|
|
'./app/**/*.{js,ts,jsx,tsx}',
|
|
'./components/**/*.{js,ts,jsx,tsx}',
|
|
'./context/**/*.{js,ts,jsx,tsx}',
|
|
'./node_modules/streamdown/dist/*.js',
|
|
'./node_modules/@streamdown/math/dist/*.js',
|
|
'!./**/*.{spec,test}.{js,ts,jsx,tsx}',
|
|
],
|
|
...commonConfig,
|
|
}
|
|
|
|
export default config
|