aboutsummaryrefslogtreecommitdiff
path: root/packages/bun-plugin-server-components/index.ts
blob: 67d98eb769d2a70427ab0ec1e28b0e31e30027e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import { BunPlugin, BuildConfig } from "bun";

function Plugin(config: { client?: BuildConfig; ssr?: BuildConfig }): BunPlugin {
  return {
    name: "bun-plugin-server-components",
    SECRET_SERVER_COMPONENTS_INTERNALS: config,
  } as any;
}

export default Plugin;