mirror of
https://github.com/YFGaia/dify-plus.git
synced 2026-06-04 10:14:00 +08:00
071bbc6d74
Co-authored-by: Stephen Zhou <38493346+hyoban@users.noreply.github.com>
14 lines
293 B
JavaScript
14 lines
293 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}',
|
|
],
|
|
...commonConfig,
|
|
}
|
|
|
|
export default config
|