1
0
forked from test/crm
jcrm/frontend/tailwind.config.js
2025-10-23 21:35:27 +08:00

19 lines
565 B
JavaScript

import jingrowUIPreset from 'jingrow-ui/src/tailwind/preset'
export default {
presets: [jingrowUIPreset],
content: [
'./index.html',
'./src/**/*.{vue,js,ts,jsx,tsx}',
'./node_modules/jingrow-ui/src/**/*.{vue,js,ts,jsx,tsx}',
'../node_modules/jingrow-ui/src/**/*.{vue,js,ts,jsx,tsx}',
'./node_modules/jingrow-ui/jingrow/**/*.{vue,js,ts,jsx,tsx}',
'../node_modules/jingrow-ui/jingrow/**/*.{vue,js,ts,jsx,tsx}',
],
safelist: [{ pattern: /!(text|bg)-/, variants: ['hover', 'active'] }],
theme: {
extend: {},
},
plugins: [],
}