Prerequisites
The blog content nodes come with tailwindcss classes, so for better results we recommend that you update your tailwind.config.ts
with this safelist:
tailwind.config.ts
const config: Config = {
...
safelist: [
"text-foreground",
"test-primary",
"text-sm",
"text-base",
"text-xl",
"text-3xl",
"text-4xl",
"px-4",
"py-1",
"p-2",
"py-2",
"my-2",
"border-l-4",
"list-disc",
"list-decimal",
"ml-8",
"bg-muted",
"rounded-lg",
"rounded-md",
"border",
"font-sans",
"font-bold",
"font-semibold",
"focus:outline-none",
"cursor-pointer",
"underline",
"mt-4",
"my-4",
"my-8",
"*:my-0",
],
...
}