gardening-app/tailwind.config.js

22 lines
391 B
JavaScript
Raw Normal View History

2024-04-07 22:02:19 +00:00
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
"./node_modules/flowbite/**/*.js"
],
theme: {
extend: {}
},
plugins: [
require('flowbite/plugin')
],
darkMode: 'selector',
2024-04-08 15:10:10 +00:00
safelist: [
'rounded-tr-none',
'rounded-tl-none',
'rounded-br-none',
'rounded-bl-none'
]
2024-04-07 22:02:19 +00:00
}