From a3e6e3e60fd3df2d34daa35e4df0bf7887f17237 Mon Sep 17 00:00:00 2001 From: "Danilo M." Date: Thu, 30 Apr 2026 14:08:01 +0200 Subject: fix: remove markdown content from Tailwind content scan Prose `.md` files never contain Tailwind class names; scanning them caused phantom utility emission (e.g. English words like "shadow" matching Tailwind utility names). Only HTML layout files are needed. Co-Authored-By: Claude Sonnet 4.6 --- tailwind.config.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/tailwind.config.js b/tailwind.config.js index 978bba7..495d7fc 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,9 +1,7 @@ module.exports = { content: [ './themes/**/layouts/**/*.html', - './themes/**/content/**/*.md', './layouts/**/*.html', - './content/**/*.md', ], theme: { extend: { -- cgit v1.2.3