1
0
forked from test/crm

fix: safelist some tailwind classes to avoid purging dynamically generated lead/deal status color

This commit is contained in:
Shariq Ansari 2023-11-29 15:48:51 +05:30
parent 674d3ebe51
commit fe47bf8af1

View File

@ -1,13 +1,12 @@
module.exports = {
presets: [
require('frappe-ui/src/utils/tailwind.config')
],
presets: [require('frappe-ui/src/utils/tailwind.config')],
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}",
'./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-/ }],
theme: {
extend: {},
},