mirror of
https://github.com/SrIzan10/ssg.git
synced 2026-06-06 01:06:52 +00:00
12 lines
251 B
TypeScript
12 lines
251 B
TypeScript
import type { Config } from 'tailwindcss'
|
|
|
|
export default {
|
|
content: [
|
|
'./app/components/**/*.{js,vue,ts}',
|
|
'./app/layouts/**/*.vue',
|
|
'./app/pages/**/*.vue',
|
|
'./app/plugins/**/*.{js,ts}',
|
|
'./app/app.vue',
|
|
],
|
|
} satisfies Config
|