13 lines
277 B
JavaScript
13 lines
277 B
JavaScript
|
module.exports = {
|
||
|
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}',
|
||
|
],
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [],
|
||
|
}
|