Files
podcaster/tailwind.config.js
andres 730090ca9e feat: render description's html
chore: refactor to get episodes data from rss feed
2024-04-20 16:58:52 +02:00

9 lines
204 B
JavaScript

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