]> danix's work - danix.xyz-2.git/commitdiff
fix: remove markdown content from Tailwind content scan
authorDanilo M. <redacted>
Thu, 30 Apr 2026 12:08:01 +0000 (14:08 +0200)
committerDanilo M. <redacted>
Thu, 30 Apr 2026 12:08:01 +0000 (14:08 +0200)
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 <redacted>
tailwind.config.js

index 978bba7e4fa145d5f3db0d2c6b87ecadecb3fdf9..495d7fc677a1d5bf7e0566ddc4e714580afd8144 100644 (file)
@@ -1,9 +1,7 @@
 module.exports = {
   content: [
     './themes/**/layouts/**/*.html',
-    './themes/**/content/**/*.md',
     './layouts/**/*.html',
-    './content/**/*.md',
   ],
   theme: {
     extend: {