aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Bryce Kalow <br.kalow@gmail.com> 2023-05-17 13:04:40 -0500
committerGravatar GitHub <noreply@github.com> 2023-05-17 11:04:40 -0700
commitfb7fb0a537f288d60eca16cc17e9ef8c5f9ad9b5 (patch)
tree7a019a1651ecb0617669333ee621beb6f2098333
parentf1b16cd36ade829c6b914086b49c83920bef5fb1 (diff)
downloadbun-fb7fb0a537f288d60eca16cc17e9ef8c5f9ad9b5.tar.gz
bun-fb7fb0a537f288d60eca16cc17e9ef8c5f9ad9b5.tar.zst
bun-fb7fb0a537f288d60eca16cc17e9ef8c5f9ad9b5.zip
fix: bun-plugin-server-components name (#2919)
-rw-r--r--packages/bun-plugin-server-components/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/bun-plugin-server-components/index.ts b/packages/bun-plugin-server-components/index.ts
index 6c9dca94f..67d98eb76 100644
--- a/packages/bun-plugin-server-components/index.ts
+++ b/packages/bun-plugin-server-components/index.ts
@@ -2,7 +2,7 @@ import { BunPlugin, BuildConfig } from "bun";
function Plugin(config: { client?: BuildConfig; ssr?: BuildConfig }): BunPlugin {
return {
- name: "bun-plugin-yaml",
+ name: "bun-plugin-server-components",
SECRET_SERVER_COMPONENTS_INTERNALS: config,
} as any;
}