From 385868f504e1661d48e8a99c6b3d25ca8b42cc2c Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Tue, 17 Dec 2024 01:34:00 -0800 Subject: [PATCH] Update plugins.md --- docs/bundler/plugins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/bundler/plugins.md b/docs/bundler/plugins.md index c71117b53e..1aae9b51f0 100644 --- a/docs/bundler/plugins.md +++ b/docs/bundler/plugins.md @@ -42,7 +42,7 @@ type Loader = "js" | "jsx" | "ts" | "tsx" | "css" | "json" | "toml" | "object"; ## Usage -A plugin is defined as simple JavaScript object containing a `name` property and a `setup` function. Register a plugin with Bun using the `plugin` function. +A plugin is defined as simple JavaScript object containing a `name` property and a `setup` function. ```tsx#myPlugin.ts import type { BunPlugin } from "bun";