18 lines
458 B
JavaScript
18 lines
458 B
JavaScript
module.exports = {
|
|
presets: [require('frappe-ui/src/tailwind/preset')],
|
|
content: [
|
|
'./index.html',
|
|
'./src/**/*.{vue,js,ts,jsx,tsx}',
|
|
'./node_modules/frappe-ui/src/components/**/*.{vue,js,ts,jsx,tsx}',
|
|
'../node_modules/frappe-ui/src/components/**/*.{vue,js,ts,jsx,tsx}',
|
|
],
|
|
safelist: [
|
|
{ pattern: /!(text|bg)-/, variants: ['hover', 'active'] },
|
|
{ pattern: /^grid-cols-/ },
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|