Move tailwind.config.ts

This commit is contained in:
2024-06-21 11:54:25 +02:00
parent 121e8067f4
commit 8dc0a0fbd3

20
app/tailwind.config.ts Normal file
View File

@@ -0,0 +1,20 @@
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]
}