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

推荐订阅源

J
Java Code Geeks
G
Google Developers Blog
有赞技术团队
有赞技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Blog — PlanetScale
Blog — PlanetScale
罗磊的独立博客
博客园 - 聂微东
V
Visual Studio Blog
博客园_首页
D
DataBreaches.Net
腾讯CDC
I
InfoQ
F
Fortinet All Blogs
量子位
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
云风的 BLOG
云风的 BLOG
月光博客
月光博客
Recent Announcements
Recent Announcements
MongoDB | Blog
MongoDB | Blog
C
Check Point Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Why your Tailwind build is bloated (And how to fix it in ...
Avishek Dhimal · 2026-06-26 · via DEV Community
Cover image for Why your Tailwind build is bloated (And how to fix it in 3 steps)

Avishek Dhimal

Tailwind CSS is an absolute game-changer for speed, but if you aren't careful, you can end up shipping a massive utility stylesheet to your users.

If your production CSS file is clocking in at over a few dozen kilobytes, something is wrong with your configuration. Luckily, getting it back down to a lightning-fast size only takes a few adjustments. Here is exactly how to audit and fix a bloated Tailwind build.

1. Stop using dynamic class strings

The number one reason Tailwind builds balloon or completely miss classes in production is dynamic string interpolation.

Tailwind’s scanner looks for unbroken, complete strings in your source files. If it sees the full string, it keeps the utility. If you break it up, it skips it.

Don't do this:


javascript
// This will FAIL or cause issues because Tailwind doesn't compile code at runtime
const buttonColor = "indigo";
const classString = `bg-${buttonColor}-600`;

Do this instead:

// Write out the full class names so the static extractor can find them
const buttonColors = {
  primary: "bg-indigo-600 hover:bg-indigo-700",
  secondary: "bg-gray-600 hover:bg-gray-700"
};
If the static scanner can’t see the literal string bg-indigo-600, that class won't be included in your final CSS tree-shaking process.

2. Lock down your content array
Tailwind needs to know exactly which files to watch. If your tailwind.config.js file has an overly broad path, it will parse files it shouldn't, slowing down build times and picking up accidental strings as classes.

Check your configuration file:

JavaScript
module.exports = {
  content: [
    "./src/**/*.{html,js,ts,jsx,tsx,vue}",
    // Avoid tracking entire node_modules directories or backup folders!
  ],
  theme: {
    extend: {},
  },
  plugins: [],
}
Make sure you are only targeting your actual source directory. Never point the scanner toward massive compiled build folders like /dist or /build.

3. Don't abuse @apply
The @apply directive is tempting when you want to "clean up" your HTML, but overusing it completely destroys the benefits of Tailwind's design system.

When you use utility classes in your HTML, the same bg-blue-500 class is reused across 100 components, adding zero bytes to your final CSS file. But when you use @apply in a CSS file:

CSS
/* This duplicates CSS declarations behind the scenes */
.btn-primary {
  @apply bg-blue-500 text-white font-bold py-2 px-4 rounded;
}
.card-action {
  @apply bg-blue-500 text-white font-bold py-2 px-4 rounded;
}
Tailwind is forced to generate duplicate raw CSS properties for every custom class name you create, heavily inflating your final bundle size. Stick to utility classes in your component markup whenever possible.

Streamlining your workflow
Keeping your utility workflow clean shouldn't mean copying and pasting raw configuration blocks over and over. If you want to jumpstart a clean architecture, I use a lightweight tool I built called [PaletteCSS](https://palettecss.com/) to quickly grab optimized, pre-formatted theme configurations for Tailwind, SCSS, or vanilla CSS variables without the boilerplate hassle.

What's your biggest pet peeve when working with utility-first CSS? Let's talk shop in the comments!