joehanson-dev/tailwind.config.cjs

11 lines
218 B
JavaScript
Raw Normal View History

2023-09-15 18:26:22 -05:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {},
},
2023-09-17 20:21:46 -05:00
plugins: [
require('@tailwindcss/typography'),
],
2023-09-15 18:26:22 -05:00
}