Skip to content

Commit

Permalink
chore: Sync ua localization
Browse files Browse the repository at this point in the history
  • Loading branch information
LWJerri committed Dec 16, 2024
1 parent 52a7534 commit def3569
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion site/docs/uk/hosting/vercel.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,21 @@ export default webhookCallback(bot, "https");

Наразі ми не маємо повного списку сумісних плагінів, тому вам доведеться перевірити це самостійно.

Додайте цей рядок до фрагмента вище, якщо ви хочете переключитися на Edge Functions:
Використовуйте цей фрагмент коду нижче, якщо ви хочете переключитися на Edge Functions:

```ts
import { Bot, webhookCallback } from "grammy";

const token = process.env.BOT_TOKEN;
if (!token) throw new Error("BOT_TOKEN is unset");

const bot = new Bot(token);

export const config = {
runtime: "edge",
};

export default webhookCallback(bot, "std/http");
```

:::
Expand Down

0 comments on commit def3569

Please sign in to comment.