crm/frontend/tailwind.config.js
Shariq Ansari 2b592ecbf6 fix: use inter font from frappe-ui
update frappe-ui
2024-11-28 13:38:02 +05:30

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: [],
}