import type { Config } from 'tailwindcss' import typography from '@tailwindcss/typography' export default >{ 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] }