/** @type {import('tailwindcss').Config} */ import typography from '@tailwindcss/typography' export default { content: [ "./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}", ], theme: { extend: { colors: { primary: 'var(--brand-main)', } }, }, plugins: [ typography, ], }