From f989295773a9d8ef58b64710bb683d7936037387 Mon Sep 17 00:00:00 2001 From: Ivan Date: Mon, 1 Dec 2025 11:50:11 -0600 Subject: [PATCH] refactor: update Tailwind CSS configuration for frontend structure - Introduced a variable for the frontend root path to streamline content paths. - Updated content paths to reflect the new directory structure for Tailwind CSS. --- tailwind.config.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tailwind.config.js b/tailwind.config.js index 28d4e4a..8ee4c0e 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,11 +1,14 @@ import formsPlugin from '@tailwindcss/forms'; +const frontendRoot = "./meshchatx/src/frontend"; + /** @type {import('tailwindcss').Config} */ module.exports = { darkMode: 'selector', content: [ - "./src/frontend/index.html", - "./src/**/*.{vue,js,ts,jsx,tsx,html}", + `${frontendRoot}/index.html`, + `${frontendRoot}/call.html`, + `${frontendRoot}/**/*.{vue,js,ts,jsx,tsx,html}`, ], theme: { extend: {},