mirror of
https://github.com/langgenius/dify.git
synced 2026-06-03 08:16:37 +08:00
dfcc0f8863
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
19 lines
533 B
TypeScript
19 lines
533 B
TypeScript
import type { Config } from 'tailwindcss'
|
|
import commonConfig from './tailwind-common-config'
|
|
|
|
const config: Config = {
|
|
content: [
|
|
'./app/**/*.{js,ts,jsx,tsx}',
|
|
'./components/**/*.{js,ts,jsx,tsx}',
|
|
'./context/**/*.{js,ts,jsx,tsx}',
|
|
'../packages/dify-ui/src/**/*.{ts,tsx}',
|
|
'./node_modules/streamdown/dist/*.js',
|
|
'./node_modules/@streamdown/math/dist/*.js',
|
|
'!./**/*.{spec,test}.{js,ts,jsx,tsx}',
|
|
'!../packages/dify-ui/src/**/*.{spec,test}.{ts,tsx}',
|
|
],
|
|
...commonConfig,
|
|
}
|
|
|
|
export default config
|