Html – React Vite web app will not apply css after build
I am creating a web application using react + vite and tailwindcss. I want to dockerize it. Here is my dockerfile: # Stage 1 FROM node:lts AS builder WORKDIR /app COPY . . RUN npm i -f && npm audit…