@vercel/config 0.0.28 → 0.0.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types.d.ts +5 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -20,6 +20,11 @@ export interface FunctionConfig {
|
|
|
20
20
|
* An integer defining the memory your Serverless Function should be provided with (between 128 and 10240).
|
|
21
21
|
*/
|
|
22
22
|
memory?: number;
|
|
23
|
+
/**
|
|
24
|
+
* An array of regions where this Serverless Function will be deployed.
|
|
25
|
+
* This setting overrides the top-level `regions` setting for matching functions.
|
|
26
|
+
*/
|
|
27
|
+
regions?: string[];
|
|
23
28
|
/**
|
|
24
29
|
* The npm package name of a Runtime, including its version
|
|
25
30
|
*/
|
package/package.json
CHANGED