|
1 | 1 | --- |
2 | | -last_modified: 2026-02-25 |
| 2 | +last_modified: 2026-06-18 |
3 | 3 | title: Builds |
4 | 4 | description: "Detailed explanation of the build process in Deno Deploy, covering build triggers, stages, configuration options, caching, and the build environment." |
5 | 5 | --- |
@@ -109,8 +109,11 @@ repository if you're using a recognized framework or common build setup. |
109 | 109 | - **Dynamic**: For applications that respond to requests using a server (API |
110 | 110 | servers, server-rendered websites, etc.) |
111 | 111 | - **Entrypoint**: The JavaScript or TypeScript file to execute |
112 | | - - **Arguments** (optional): Command-line arguments to pass to the |
113 | | - application |
| 112 | + - **Arguments** (optional): Command-line arguments passed to the |
| 113 | + application, after the entrypoint. These are not flags for the Deno |
| 114 | + runtime: runtime flags such as `--unstable-*` cannot be passed, since the |
| 115 | + runtime always runs with a fixed set of flags. See the |
| 116 | + [runtime reference](/deploy/reference/runtime/) for details. |
114 | 117 | - **Runtime working directory** (optional): The working directory for the |
115 | 118 | application at runtime |
116 | 119 | - **Runtime memory limit** (optional): The maximum amount of memory the |
@@ -157,8 +160,10 @@ the entire configuration will be sourced from the file instead of the dashboard |
157 | 160 | - `deploy.runtime.type`: Must be set to `"dynamic"`, or omitted (dynamic is |
158 | 161 | the default). |
159 | 162 | - `deploy.runtime.entrypoint`: The JavaScript or TypeScript file to execute. |
160 | | - - `deploy.runtime.args` (optional): Command-line arguments to pass to the |
161 | | - application. |
| 163 | + - `deploy.runtime.args` (optional): Command-line arguments passed to the |
| 164 | + application, after the entrypoint. These are not flags for the Deno |
| 165 | + runtime; runtime flags such as `--unstable-*` cannot be passed. See the |
| 166 | + [runtime reference](/deploy/reference/runtime/). |
162 | 167 | - `deploy.runtime.cwd` (optional): The working directory for the application |
163 | 168 | at runtime. |
164 | 169 | - `deploy.runtime.memory_limit` (optional): The maximum amount of memory the |
|
0 commit comments