mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
docs: remove extra assignment (#13389)
This commit is contained in:
@@ -10,7 +10,7 @@ This automatically load balances incoming requests across multiple instances of
|
||||
```ts#server.ts
|
||||
import { serve } from "bun";
|
||||
|
||||
const id = = Math.random().toString(36).slice(2);
|
||||
const id = Math.random().toString(36).slice(2);
|
||||
|
||||
serve({
|
||||
port: process.env.PORT || 8080,
|
||||
|
||||
Reference in New Issue
Block a user