19 lines
565 B
JavaScript
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: [],
|
|
}
|