Files

12 lines
216 B
JavaScript
Raw Permalink Normal View History

2024-11-08 23:33:17 +08:00
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./index.html',
'./src/**/*.{vue,js,ts,jsx,tsx}',
],
theme: {
extend: {},
},
plugins: [require('tailwindcss-primeui')],
}