friends-best/tailwind.config.ts
Louis Hollingworth 2e98cb39f4
Add tailwindcss, add first page
Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
2022-11-13 20:53:51 +00:00

17 lines
374 B
TypeScript

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}`
],
}