mirror of
https://github.com/EasyTier/EasyTier.git
synced 2024-11-16 11:42:27 +08:00
12 lines
216 B
JavaScript
12 lines
216 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
export default {
|
||
|
content: [
|
||
|
'./index.html',
|
||
|
'./src/**/*.{vue,js,ts,jsx,tsx}',
|
||
|
],
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [require('tailwindcss-primeui')],
|
||
|
}
|