From 97de11dd3b3c036952f155ba9cde107b82d0f4b0 Mon Sep 17 00:00:00 2001 From: Zeb Piasecki Date: Thu, 4 May 2023 12:40:31 -0400 Subject: [PATCH] Add example to placement changeset --- .changeset/short-bottles-smell.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.changeset/short-bottles-smell.md b/.changeset/short-bottles-smell.md index 36934810957..e32fcf01b3b 100644 --- a/.changeset/short-bottles-smell.md +++ b/.changeset/short-bottles-smell.md @@ -4,4 +4,9 @@ feat: add support for placement in wrangler config -Allows a `placement` object in the wrangler config with a mode of `off` or `smart` to configure [Smart placement](https://developers.cloudflare.com/workers/platform/smart-placement/). +Allows a `placement` object in the wrangler config with a mode of `off` or `smart` to configure [Smart placement](https://developers.cloudflare.com/workers/platform/smart-placement/). Enabling Smart Placement can be done in your `wrangler.toml` like: + +```toml +[placement] +mode = "smart" +```