You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Options can be specified on the command line or added to a persistent configuration file for the project. The CLI will search for a configuration starting from the current directory in the following order:
52
+
53
+
* A `fastlycompute` property in `package.json`
54
+
*`.fastlycomputerc.json`
55
+
*`fastlycompute.config.js`
56
+
57
+
If an option is defined in both the command line and the configuration file, the command line option takes precedence.
|`excludeSources`|`--exclude-sources`|`boolean`| Don't include sources in stack traces |
108
+
|`debugIntermediateFiles`|`--debug-intermediate-files`|`string` (path) | Output intermediate files in directory |
109
+
|`debugBuild`|`--debug-build`|`boolean`| Use debug build of the SDK runtime |
110
+
|`engineWasm`|`--engine-wasm`|`string` (path) | Specify a custom Wasm engine (advanced) |
111
+
|`wevalBin`|`--weval-bin`|`string` (path) | Specify a custom weval binary (advanced) |
112
+
|`env`|`--env`|`string \| object \| array`| Set environment variables, possibly inheriting from the current environment. Multiple variables can be comma-separated (e.g., --env ENV_VAR,OVERRIDE=val) |
113
+
114
+
NOTE: The `env` field is additive. Values defined on the command-line values append to, rather than replace, the values defined in any configuration file.
115
+
33
116
### API documentation
34
117
35
118
The API documentation for the JavaScript SDK is located at [https://js-compute-reference-docs.edgecompute.app](https://js-compute-reference-docs.edgecompute.app).
0 commit comments