16 lines
274 B
TypeScript
16 lines
274 B
TypeScript
|
|
import type { Config } from 'tailwindcss'
|
||
|
|
|
||
|
|
export default {
|
||
|
|
content: [
|
||
|
|
'./components/**/*.{vue,ts}',
|
||
|
|
'./composables/**/*.ts',
|
||
|
|
'./pages/**/*.vue',
|
||
|
|
'./layouts/**/*.vue',
|
||
|
|
'./app.vue',
|
||
|
|
],
|
||
|
|
theme: {
|
||
|
|
extend: {},
|
||
|
|
},
|
||
|
|
plugins: [],
|
||
|
|
} satisfies Config
|