Official Plugins
SHOULD: Use official plugins (@tailwindcss/typography for prose, @tailwindcss/forms for inputs)
Load the plugins you actually still need with @plugin in CSS, and drop the ones v4 absorbed into core
Bad
Good
Why it matters
Two things changed in v4 and stale advice gets both wrong. First, how plugins load: there is no `plugins: []` array, because there is no config file. A plugin is imported from your stylesheet with `@plugin "@tailwindcss/typography";` next to the `@import "tailwindcss"` at the top. Second, and more important, *which* plugins are still plugins. `@tailwindcss/container-queries` is deprecated — container queries are core now, so `@container` and `@md:` work out of the box.
Installing that package today does not add a feature; it adds a dead dependency that shadows a built-in and tells the next reader this codebase has not been upgraded. What survives is the stuff that is genuinely opinionated content styling rather than a CSS primitive: `@tailwindcss/typography` for the `prose` classes, which is still the right answer for markdown and CMS output you do not control, and `@tailwindcss/forms` for normalizing native control appearance.
Before adding any plugin to a v4 project, check whether core already does it — the same absorption happened to several utilities that used to require a package.