mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-07-08 17:41:48 +08:00
11 lines
268 B
JavaScript
11 lines
268 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
import commonConfig from './tailwind.common.config';
|
|
module.exports = {
|
|
content: [
|
|
'./app/**/*.{js,ts,jsx,tsx}',
|
|
'./components/**/*.{js,ts,jsx,tsx}',
|
|
'./context/**/*.{js,ts,jsx,tsx}',
|
|
],
|
|
...commonConfig,
|
|
}
|