Skip to content

Commit

Permalink
Adding missing components from Import section
Browse files Browse the repository at this point in the history
  • Loading branch information
dcpena committed Sep 24, 2024
1 parent 4e40949 commit bf43a51
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/content/docs/workers/wrangler/custom-builds.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ description: Customize how your code is compiled, before being processed by Wran

---

import { Render, Type, MetaInfo } from "~/components"

Custom builds are a way for you to customize how your code is compiled, before being processed by Wrangler.

:::note
Expand All @@ -27,7 +29,7 @@ Custom builds are configured by adding a `[build]` section in your `wrangler.tom

* The directory in which the command is executed.

* `watch_dir` string | string\[] optional
* `watch_dir` <Type text="string | string\[]" /> <MetaInfo text="optional" />

* The directory to watch for changes while using `wrangler dev`. Defaults to the current working directory.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ head:
content: Commands - Wrangler v1 (deprecated)
---

import { Render } from "~/components";
import { Render, Type, MetaInfo } from "~/components";

<Render file="wrangler-v1-deprecation" />

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ description: Local environment variables that can change Wrangler's behavior.

---

import { Render, Type, MetaInfo } from "~/components"

System environment variables are local environment variables that can change Wrangler's behavior. There are three ways to set system environment variables:

1. Create an `.env` file in your project directory. Set the values of your environment variables in your [`.env`](/workers/wrangler/system-environment-variables/#example-env-file) file. This is the recommended way to set these variables, as it persists the values between Wrangler sessions.
Expand Down

0 comments on commit bf43a51

Please sign in to comment.