feat(tailwind): add markdown renderer to content paths for Tailwind CSS configuration to support backend styling

This commit is contained in:
2026-01-03 19:22:21 -06:00
parent 1e8651c645
commit 35e3566a63

View File

@@ -5,7 +5,11 @@ const frontendRoot = "./meshchatx/src/frontend";
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "selector",
content: [`${frontendRoot}/index.html`, `${frontendRoot}/**/*.{vue,js,ts,jsx,tsx,html}`],
content: [
`${frontendRoot}/index.html`,
`${frontendRoot}/**/*.{vue,js,ts,jsx,tsx,html}`,
"./meshchatx/src/backend/markdown_renderer.py",
],
theme: {
extend: {},
},