stack/apps/internal-tool/tailwind.config.js
2026-04-12 19:03:47 -07:00

11 lines
208 B
JavaScript

import typography from '@tailwindcss/typography';
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{ts,tsx}'],
theme: {
extend: {},
},
plugins: [typography],
};