mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-14 15:54:13 +01:00
21 lines
503 B
TypeScript
21 lines
503 B
TypeScript
import type { Config } from 'tailwindcss'
|
|
import typography from '@tailwindcss/typography'
|
|
|
|
export default <Partial<Config>>{
|
|
content: [
|
|
'./components/**/*.{vue,js,ts}',
|
|
'./layouts/**/*.vue',
|
|
'./pages/**/*.vue',
|
|
'./composables/**/*.{js,ts}',
|
|
'./plugins/**/*.{js,ts}',
|
|
'./utils/**/*.{js,ts}',
|
|
'./App.{js,ts,vue}',
|
|
'./app.{js,ts,vue}',
|
|
'./Error.{js,ts,vue}',
|
|
'./error.{js,ts,vue}',
|
|
'./app.config.{js,ts}',
|
|
'content/**/*.md'
|
|
],
|
|
plugins: [typography]
|
|
}
|