JSL_OrganizeInternalOAWeb/tailwind.config.js

16 lines
220 B
JavaScript
Raw Permalink Normal View History

2024-03-10 13:00:00 +08:00
module.exports = {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
"./node_modules/flowbite/**/*.js"
],
theme: {
extend: {},
},
plugins: [
require('flowbite/plugin')
],
2024-03-14 18:10:16 +08:00
2024-03-10 13:00:00 +08:00
}