dify/web/tailwind.config.js
Bowen Liang 071bbc6d74
build: bump NextJS from to 16 with turbopack enable for web production build boost (#27014)
Co-authored-by: Stephen Zhou <38493346+hyoban@users.noreply.github.com>
2026-01-21 12:53:29 +08:00

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