From 45c38456ab91d89917050e8616a8e2b11ee9cfc1 Mon Sep 17 00:00:00 2001 From: Anish Sarkar <104695310+AnishSarkar22@users.noreply.github.com> Date: Sat, 7 Mar 2026 12:34:52 +0530 Subject: [PATCH] chore: add Tailwind CSS parser configuration to biome.json and standardize source path quotes in globals.css --- surfsense_web/app/globals.css | 8 ++++---- surfsense_web/biome.json | 3 +++ 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/surfsense_web/app/globals.css b/surfsense_web/app/globals.css index c192a27be..9dffa8a03 100644 --- a/surfsense_web/app/globals.css +++ b/surfsense_web/app/globals.css @@ -231,7 +231,7 @@ button { } } -@source '../node_modules/@llamaindex/chat-ui/**/*.{ts,tsx}'; -@source '../node_modules/streamdown/dist/*.js'; -@source '../node_modules/@streamdown/code/dist/*.js'; -@source '../node_modules/@streamdown/math/dist/*.js'; +@source "../node_modules/@llamaindex/chat-ui/**/*.{ts,tsx}"; +@source "../node_modules/streamdown/dist/*.js"; +@source "../node_modules/@streamdown/code/dist/*.js"; +@source "../node_modules/@streamdown/math/dist/*.js"; diff --git a/surfsense_web/biome.json b/surfsense_web/biome.json index 6e17e7f14..bc720605b 100644 --- a/surfsense_web/biome.json +++ b/surfsense_web/biome.json @@ -65,6 +65,9 @@ } }, "css": { + "parser": { + "tailwindDirectives": true + }, "formatter": { "enabled": true, "indentStyle": "tab",