-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
📚 Docs: Update with-tailwind example to tailwind 4.0 #9895
Comments
that would be great, I'm trying to migrate the deprecate config file but can't figure out how to load my custom theme. I created the |
I did try to make this upgrade a few weeks ago, but it looked like Tailwind v4 had introduced a number of bugs, unfortunately. From my memory, I remember prefixes not working, but there were a few others as well. I'll leave this open as a reminder to try again at a later date. |
I haven't tried it out yet but looks like someone already found the solution, see stackoverflow I also don't know how good is as a solution but maybe a starting point. |
I was able to get v4 working by creating a tailwind config file and then referencing it in my stylesheet. According to the Tailwind documentation, config files are still supported, but v4 does not automatically detect them. So... Project Structure
Next.js app (apps/web)Basically, import everything from the UI package.
import '@repo/ui/src/styles/global.css';
// ...
export { default } from "@repo/ui/postcss.config";
export * from "@repo/ui/tailwind.config"; UI Package (packages/ui)
@import 'tailwindcss';
@config "../../tailwind.config.ts"; /* <-- the key to making this work in v4 */
/* ... */
const config = {
plugins: ["@tailwindcss/postcss"],
};
export default config;
import type { Config } from "tailwindcss";
const config = {
// this file is located in packages/ui, but it is being used by apps/web (and any future web apps).
// hence, the following paths:
content: ["app/**/*.{ts,tsx}", "../../packages/ui/src/**/*.{ts,tsx}"],
} satisfies Config;
export default config; Without the Hope this helps! |
I got a simple solution working @import "tailwindcss";
@source "@repo/ui"; this worked for my use case. |
In the end, I'm using one of the 2 ways mentioned in SO.
If I need to override something:
|
found a way I don't know how feasible it is Created a tailwind.config.js file in the root of Next.js project with the following content: export default {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"../../packages/ui/**/*.{js,ts,jsx,tsx,mdx}"
],
theme: {
extend: {},
},
plugins: [],
}; updated the global CSS file (e.g., apps/client/app/global.css) to include: @config "../tailwind.config.js";
@import "tailwindcss"; |
@Prash766 You'll need to be careful with this strategy, since some of these globs will include node_modules, and can end up being dreadfully slow at scale. |
@anthonyshew thanks for pointing that out! updated the tailwind.config.js to explicitly exclude node_modules export default {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"../../packages/ui/**/*.{js,ts,jsx,tsx,mdx}",
"!**/node_modules/**" //exlcluded node_modules
],
theme: {
extend: {},
},
plugins: [],
} is this way optimal, or are there any other things i need to consider |
What is the improvement or update you wish to see?
The with-tailwind project example uses tailwind 3.4.
I guess it would be helpful to a lot of people to update it to 4.0.
Does the docs page already exist? Please link to it.
https://github.com/vercel/turborepo/tree/main/examples/with-tailwind
The text was updated successfully, but these errors were encountered: