1
0
forked from test/crm
jcrm/frontend/tailwind.config.js
Shariq Ansari 020e28ad5a fix: update package.json and config files to use ES module syntax
(cherry picked from commit 9aab0e74174405ddbfa3a375e5ff332870bbf977)
2025-05-19 10:51:59 +00:00

19 lines
556 B
JavaScript

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