From ff56a592bccf7947337525c6955677fd6d862c48 Mon Sep 17 00:00:00 2001 From: fullsizemalt <106900403+fullsizemalt@users.noreply.github.com> Date: Fri, 19 Dec 2025 15:46:26 -0800 Subject: [PATCH] fix(build): Correct syntax error in tailwind.config.js - Fixed malformed object structure where 'plugins' array was orphaned outside the export - This resolves the 'Unexpected token' build error - Re-enables the new Stone/Lime design system --- frontend/tailwind.config.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/tailwind.config.js b/frontend/tailwind.config.js index bcebe6e..eb4cf4a 100644 --- a/frontend/tailwind.config.js +++ b/frontend/tailwind.config.js @@ -208,6 +208,5 @@ export default { }, }, }, -}, -plugins: [], + plugins: [], }