-
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
Reproduction here: https://github.com/AChangXD/tailwind-v4-docker-build-test |
Beta Was this translation helpful? Give feedback.
-
@leerob Would this be an issue with Next or tailwind v4? |
Beta Was this translation helpful? Give feedback.
-
I think the new auto detection of CSS classnames in TW 4 is getting tricked into parsing the entire root of the host, right? # Set the working directory
WORKDIR /root
# Copy package.json and package-lock.json
COPY package*.json /root
# Copy the rest of the application code
COPY . /root In TW 3 you'd specify the paths to scan, but since TW 4 is config less cuz it auto scans, the placement of the application code matters now. |
Beta Was this translation helpful? Give feedback.
I think the new auto detection of CSS classnames in TW 4 is getting tricked into parsing the entire root of the host, right?
In TW 3 you'd specify the paths to scan, but since TW 4 is config less cuz it auto scans, the placement of the application code matters now.