From 4cf0d39e585c2b09fba87880cf24c1611aca9ec2 Mon Sep 17 00:00:00 2001 From: Pham Minh Triet <92496972+Nanome203@users.noreply.github.com> Date: Sat, 8 Mar 2025 08:28:45 +0700 Subject: [PATCH] fix(docs): typo in css.md (#17973) --- docs/bundler/css.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/bundler/css.md b/docs/bundler/css.md index 1524a2e595..6bb0fa5b6d 100644 --- a/docs/bundler/css.md +++ b/docs/bundler/css.md @@ -1,13 +1,13 @@ Bun's bundler has built-in support for CSS with the following features: -- Transpiling modern/feature features to work on all browsers (including vendor prefixing) +- Transpiling modern/future features to work on all browsers (including vendor prefixing) - Minification - CSS Modules - Tailwind (via a native bundler plugin) ## Transpiling -Bun's CSS bundler lets you use future/modern CSS features without having to worry about browser compatibility — all thanks to its transpiling and vendor prefixing features which are enabled by default. +Bun's CSS bundler lets you use modern/future CSS features without having to worry about browser compatibility — all thanks to its transpiling and vendor prefixing features which are enabled by default. Bun's CSS parser and bundler is a direct Rust → Zig port of [LightningCSS](https://lightningcss.dev/), with a bundling approach inspired by esbuild. The transpiler converts modern CSS syntax into backwards-compatible equivalents that work across browsers.