friends-best/tailwind.config.ts

17 lines
374 B
TypeScript
Raw Normal View History

import type { Config } from 'tailwindcss'
export default <Partial<Config>>{
theme: {
},
content: [
`./components/**/*.{vue,js,ts}`,
`./layouts/**/*.vue`,
`./pages/**/*.vue`,
`./composables/**/*.{js,ts}`,
`./plugins/**/*.{js,ts}`,
`./App.{js,ts,vue}`,
`./app.{js,ts,vue}`,
`./Error.{js,ts,vue}`,
`./error.{js,ts,vue}`
],
}