diff --git a/src/content/docs/workers/wrangler/commands.mdx b/src/content/docs/workers/wrangler/commands.mdx
index 159f00f0fa60684..f738c108e78e777 100644
--- a/src/content/docs/workers/wrangler/commands.mdx
+++ b/src/content/docs/workers/wrangler/commands.mdx
@@ -2287,6 +2287,10 @@ The minimum required Wrangler version to use this command is 3.66.0.
- Leave the path blank to use the default option, e.g. `npx wrangler types --x-include-runtime`
- A custom path must be relative to the project root, e.g. `./my-runtime-types.d.ts`
- A custom path must have a `d.ts` extension.
+- `--strict-vars`
+ - Control the types that Wrangler generates for `vars` bindings.
+ - If `true`, (the default) Wrangler generates literal and union types for bindings (e.g. `myEnv: 'my dev variable' | 'my prod variable'`).
+ - If `false`, Wrangler generates generic types (e.g. `myEnv: string`). This is useful when variables change frequently, especially when working across multiple environments.