mirror of
https://github.com/langgenius/dify.git
synced 2026-03-11 10:17:50 +08:00
Co-authored-by: Stephen Zhou <hi@hyoban.cc> Co-authored-by: Stephen Zhou <38493346+hyoban@users.noreply.github.com> Co-authored-by: yyh <92089059+lyzno1@users.noreply.github.com>
16 lines
385 B
JavaScript
16 lines
385 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',
|
|
],
|
|
...commonConfig,
|
|
}
|
|
|
|
export default config
|