From 5a153cd8ff7bd6789cacd5137d9087df4ab78402 Mon Sep 17 00:00:00 2001 From: wiseaidev Date: Sat, 10 May 2025 19:08:52 +0300 Subject: [PATCH] fix: pin tailwind to `v3` --- Desktop/README.md | 4 ++-- Fullstack/README.md | 4 ++-- Web/README.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Desktop/README.md b/Desktop/README.md index 5ea3a32..7518734 100644 --- a/Desktop/README.md +++ b/Desktop/README.md @@ -1,11 +1,11 @@ # Development {% if styling == "Tailwind" %} 1. Install npm: https://docs.npmjs.com/downloading-and-installing-node-js-and-npm -2. Install the tailwind css cli: https://tailwindcss.com/docs/installation +2. Install the tailwind css cli: https://v3.tailwindcss.com/docs/installation 3. Run the following command in the root of the project to start the tailwind CSS compiler: ```bash -npx tailwindcss -i ./input.css -o ./assets/tailwind.css --watch +npx tailwindcss@v3 -i ./input.css -o ./assets/tailwind.css --watch ``` {% endif %} Run the following command in the root of the project to start the Dioxus dev server: diff --git a/Fullstack/README.md b/Fullstack/README.md index 4a446e5..0a61256 100644 --- a/Fullstack/README.md +++ b/Fullstack/README.md @@ -1,10 +1,10 @@ {% if styling == "Tailwind" %} 1. Install npm: https://docs.npmjs.com/downloading-and-installing-node-js-and-npm -2. Install the tailwind css cli: https://tailwindcss.com/docs/installation +2. Install the tailwind css cli: https://v3.tailwindcss.com/docs/installation 3. Run the following command in the root of the project to start the tailwind CSS compiler: ```bash -npx tailwindcss -i ./input.css -o ./assets/tailwind.css --watch +npx tailwindcss@v3 -i ./input.css -o ./assets/tailwind.css --watch ``` {% endif %} diff --git a/Web/README.md b/Web/README.md index 80f7529..9b49209 100644 --- a/Web/README.md +++ b/Web/README.md @@ -1,11 +1,11 @@ # Development {% if styling == "Tailwind" %} 1. Install npm: https://docs.npmjs.com/downloading-and-installing-node-js-and-npm -2. Install the tailwind css cli: https://tailwindcss.com/docs/installation +2. Install the tailwind css cli: https://v3.tailwindcss.com/docs/installation 3. Run the following command in the root of the project to start the tailwind CSS compiler: ```bash -npx tailwindcss -i ./input.css -o ./assets/tailwind.css --watch +npx tailwindcss@v3 -i ./input.css -o ./assets/tailwind.css --watch ``` {% endif %} Run the following command in the root of the project to start the Dioxus dev server: