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