mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
18 lines
351 B
TypeScript
18 lines
351 B
TypeScript
import type { Config } from 'tailwindcss'
|
|
|
|
export default <Partial<Config>> {
|
|
content: [
|
|
'./components/**/*.{js,vue,ts}',
|
|
'./modules/**/*.{js,vue,ts}',
|
|
'./layouts/**/*.vue',
|
|
'./pages/**/*.vue',
|
|
'./plugins/**/*.{js,ts}',
|
|
'./app.vue',
|
|
'./app.config.ts',
|
|
'./error.vue'
|
|
],
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
plugins: []
|
|
} |