diff --git a/docs/bundler/fullstack.md b/docs/bundler/fullstack.md index 6d4e6d92fe..7b1b9185d6 100644 --- a/docs/bundler/fullstack.md +++ b/docs/bundler/fullstack.md @@ -68,6 +68,60 @@ Bun.serve({ When you make a request to `/dashboard` or `/`, Bun automatically bundles the ` + + +``` + +```css#styles.css +body { + background-color: red; +} +``` + +{% /codetabs %} + ### Development mode When building locally, enable development mode by setting `development: true` in `Bun.serve()`. @@ -151,3 +205,7 @@ This works similarly to how [`Bun.build` processes HTML files](/docs/bundler/htm - Client-side hot reloading isn't wired up yet. It will be in the future. - This doesn't support `bun build` yet. It also will in the future. - We haven't figured out plugins yet. This probably will live in `bunfig.toml` with the same API as in `Bun.build` otherwise. + +``` + +```