From 4051c530ea66e02ce1eb1f4256e4ea1bf66c9d7d Mon Sep 17 00:00:00 2001 From: cryptooda Date: Sat, 1 Feb 2025 21:32:56 +0700 Subject: [PATCH] Add Tailwind CSS and plugins to Dockerfile-web-ui-dev --- src/Managing.WebApp/Dockerfile-web-ui-dev | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Managing.WebApp/Dockerfile-web-ui-dev b/src/Managing.WebApp/Dockerfile-web-ui-dev index a619883..cf82d6a 100644 --- a/src/Managing.WebApp/Dockerfile-web-ui-dev +++ b/src/Managing.WebApp/Dockerfile-web-ui-dev @@ -42,6 +42,10 @@ COPY src/Managing.WebApp/ /app/ RUN ls -alh RUN ls -alh src/ # Build the Vite application + +# Explicitly install Tailwind CSS and plugins if needed +RUN yarn add -D tailwindcss postcss autoprefixer @tailwindcss/typography + #RUN npm run build RUN node --max-old-space-size=8192 ./node_modules/.bin/vite build