惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
D
DataBreaches.Net
博客园 - 三生石上(FineUI控件)
博客园_首页
T
Tailwind CSS Blog
美团技术团队
Hugging Face - Blog
Hugging Face - Blog
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
云风的 BLOG
云风的 BLOG
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 聂微东
S
SegmentFault 最新的问题
小众软件
小众软件
酷 壳 – CoolShell
酷 壳 – CoolShell
N
Netflix TechBlog - Medium
Jina AI
Jina AI
WordPress大学
WordPress大学
U
Unit 42
J
Java Code Geeks
Blog — PlanetScale
Blog — PlanetScale
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The Cloudflare Blog

Nx Blog

Sharing Tailwind CSS Styles Across Apps in a Monorepo | Nx Blog How SiriusXM Stays Competitive by Iterating and Getting to Market Fast | Nx Blog Agentic Experience Is the New Developer Experience | Nx Blog Nx Joins the Linux Foundation and the Agentic AI Foundation | Nx Blog A Monorepo Is NOT a Monolith | Nx Blog Why we deleted (most of) our MCP tools | Nx Blog Teach Your AI Agent How to Work in a Monorepo | Nx Blog How Broadcom stays efficient and nimble with monorepos | Nx Blog Why Monorepos are King in the Age of AI | Nx Blog Nx 2026 Roadmap: Expanding Agent Autonomy, Improving Performance, Better Polyglot and More | Nx Blog End to End Autonomous AI Agent Workflows with Nx | Nx Blog Autonomous Agents at Scale | Nx Blog Scaling 700+ Projects: How Nx Became a 'No-Brainer' for Caseware | Nx Blog Configure Tailwind v4 with Angular in an Nx Monorepo | Nx Blog The Missing Multiplier for AI Agent Productivity | Nx Blog A Year of Nx Webinars | Nx Blog Wrapping Up 2025 | Nx Blog Nx 22.3 Release: Angular 21 Support, tsgo Compiler, and Prettier v3 | Nx Blog Nx Cloud Release: Agent Resource Usage | Nx Blog Nx Platform Outperforms DIY Cache by 5x | Nx Blog An Nx Carol: Past, Present, and Future of Your Monorepo | Nx Blog Nx 22.1 Release: Terminal UI on Windows, Storybook 10, Vitest 4, and more! | Nx Blog The Compounding Effect: How Nx Features Multiply Performance Gains | Nx Blog 10 Monorepo Myths Debunked: Separating Fact from Fiction | Nx Blog Nx Cloud Release: Enterprise Task Analytics | Nx Blog Watch and Rebuild Storybook Dependencies with Nx | Nx Blog Book - React for Enterprise: Timeless Architecture for Enterprise Apps | Nx Blog Beyond Remote Cache: Unlock 70% More CI Performance | Nx Blog Nx 22 Release: Expanding the build platform | Nx Blog What's the Point of Generating All This Code If You Can't Merge It? | Nx Blog
Configure Tailwind 4 with Vite in an NPM Workspace: The C...
Juri Strumpflohner · 2025-06-20 · via Nx Blog

Tailwind CSS v4 brings revolutionary changes to how we configure and use the popular utility-first framework. The simplified setup eliminates configuration files and complex PostCSS setups - you just install, import, and start building. But when working in NPM workspaces or monorepos, there's still one crucial challenge: how do you tell Tailwind which packages to scan for classes?

This guide walks you through setting up Tailwind v4 with Vite in an NPM workspace, then shows you how to automate the configuration using Nx Sync Generators to eliminate manual maintenance.

Ready-to-use Nx Community plugin available

Don't want to build your own sync generator? Use the @juristr/nx-tailwind-sync package which implements everything described in this article.

https://github.com/juristr/tailwind4-vite-npm-workspaces

Setting up Tailwind v4

Tailwind v4 introduced some nice simplifications when it comes to configuring Tailwind:

  • No more tailwind.config.js - The framework works out of the box
  • Minimal dependencies - Just tailwindcss and @tailwindcss/vite for Vite projects
  • Simple CSS import - Add @import "tailwindcss" to your stylesheet and you're ready

Since we're using Vite in this workspace, we can leverage the dedicated Tailwind Vite plugin instead of PostCSS configuration. Here's what you need:

Install the required packages at your workspace root:

{
  "devDependencies": {
    "tailwindcss": "^4.0.0",
    "@tailwindcss/vite": "^4.0.0"
  }
}

Configure your Vite setup:

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import tailwindcss from '@tailwindcss/vite';

export default defineConfig({
  plugins: [react(), tailwindcss()],
  // ... rest of your config
});

Add the import to your main CSS file:

The NPM workspace challenge

Consider a typical e-commerce application structured as an NPM workspace:

apps/
  shop/
    src                  <<<< where tailwind is configured
packages/
  products/
    feat-product-list/
    feat-product-detail/
    data-access-products/
  shared/
    ui/
    utils/

At this point, your application will build and serve, but you'll notice that styles from your packages/ are missing. In this modular setup, your main application (shop) depends on various feature packages, but Tailwind only scans the main app by default. This means styles defined in your packages won't be included in the final bundle, leading to missing styles and broken layouts.

Solving the scanning problem with @source directives

Tailwind v4 introduces the @source directive to address exactly this problem. You can explicitly tell Tailwind which directories to scan by adding these directives to your CSS file:

@import 'tailwindcss';

@source "../../../packages/products/feat-product-list";
@source "../../../packages/products/feat-product-detail";
@source "../../../packages/shared/ui";
...

With these directives in place, Tailwind will scan the specified packages and include any utility classes found there. Your application styles will now work correctly across all packages.

Automating @source entries - enter Nx sync generators

While @source directives solve the technical problem, they introduce a maintenance challenge:

  • manual updates required when adding or removing dependencies,
  • easy to forget updating the directives,
  • hard-to-debug issues since missing styles don't break builds (just cause visual problems), and
  • team coordination since every developer needs to remember to update these paths.

This is where automation becomes crucial and where Nx can help. Nx Sync Generators provide a powerful solution for automating configuration that needs to stay in sync with your project structure.

For our specific use case we can automate the generation of the @source directives by

  • analyzing and traversing all of the shop application's dependencies (leveraging the Nx project graph)
  • generating the @source entries into the correct styles.css file

You can follow the guide on the Nx docs for all the details on how to implement your own Nx sync generator. At a high level these are the steps you'll need:

Step 1: Add Nx Plugin development support

Step 2: Generate a new plugin into your workspace

npx nx g @nx/plugin:plugin tools/tailwind-sync-plugin

Note, you can choose whatever folder you like. I happen to use the tools/ folder for this example.

Step 3: Generate a sync generator

npx nx g @nx/plugin:generator --name=update-tailwind-globs --path=tools/tailwind-sync-plugin/src/generators/update-tailwind-globs

With that you have the infrastructure in place and we can look at the actual implementation of the sync generator:

import { Tree, createProjectGraphAsync, joinPathFragments } from '@nx/devkit';
import { SyncGeneratorResult } from 'nx/src/utils/sync-generators';

export async function updateTailwindGlobsGenerator(
  tree: Tree
): Promise<SyncGeneratorResult> {
  const appName = '@aishop/shop';
  const projectGraph = await createProjectGraphAsync();

  // Traverse all dependencies of the shop app
  const dependencies = new Set<string>();
  const queue = [appName];
  const visited = new Set<string>();

  while (queue.length > 0) {
    const current = queue.shift()!;
    if (visited.has(current)) continue;
    visited.add(current);

    const deps = projectGraph.dependencies[current] || [];
    deps.forEach((dep) => {
      dependencies.add(dep.target);
      queue.push(dep.target);
    });
  }

  // Generate @source directives for each dependency
  const sourceDirectives: string[] = [];
  dependencies.forEach((dep) => {
    const project = projectGraph.nodes[dep];
    if (project && project.data.root) {
      const relativePath = joinPathFragments('../../../', project.data.root);
      sourceDirectives.push(`@source "${relativePath}";`);
    }
  });

  // Update the styles.css file
  const stylesPath = 'apps/shop/src/styles.css';
  const currentContent = tree.read(stylesPath)?.toString() || '';

  // Insert the @source directives after @import "tailwindcss"
  // ... (implementation details)

  return {
    outOfSyncMessage: 'Tailwind @source directives updated',
  };
}

(Check out the Github repo for the full implementation)

You can manually run sync generators with nx sync, but we want this to run automatically whenever we build or serve our application. As such we can register the sync generator in the app's package.json:

{
  "name": "@aishop/shop",
  ...
  "nx": {
    "targets": {
      "build": {
        "syncGenerators": ["@aishop/tailwind-sync-plugin:update-tailwind-globs"]
      },
      "serve": {
        "syncGenerators": ["@aishop/tailwind-sync-plugin:update-tailwind-globs"]
      }
    }
  }
}

Nx sync generators in action

When you run your development server with nx serve shop, the sync generator automatically checks if your @source directives are up to date:

Tailwind Nx sync generator in action

Your CSS file is automatically updated with the correct directives based on your actual project dependencies. If you add or remove dependencies later, the next build or serve will detect the changes and update the configuration automatically.

You can find the complete implementation in this GitHub repository.

Using Tailwind v3?

If you're currently using Tailwind v3, the concept is similar but the implementation differs. Instead of updating @source directives, you'd modify the tailwind.config.js file with glob patterns.

Check out the following video which explains the same approach for Tailwind v3:

The Tailwind v3 demo repository shows how to implement this approach for older versions.

Conclusion

While Tailwind v4's simplified setup is a significant improvement, manually maintaining @source directives creates a maintenance burden in monorepos. Nx Sync Generators solve this by automatically keeping your Tailwind configuration in sync with your project dependencies, eliminating manual updates and preventing hard-to-debug styling issues.

This approach transforms configuration maintenance into a completely automated process, letting you focus on building features rather than managing paths.

Learn more