26 lines
568 B
JavaScript
26 lines
568 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}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
strokeWidth: {
|
|
1.5: '1.5',
|
|
},
|
|
screens: {
|
|
'2xl': '1600px',
|
|
'3xl': '1920px',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|