mirror of
https://github.com/fanchenio/DawnLauncher.git
synced 2025-07-13 21:02:10 +08:00
15 lines
243 B
JavaScript
15 lines
243 B
JavaScript
module.exports = {
|
|
content: [
|
|
"./src/**/*.{vue,js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
variants: {
|
|
extend: {},
|
|
},
|
|
plugins: [require('@tailwindcss/forms')({
|
|
strategy: 'class', // only generate classes
|
|
})],
|
|
}
|