@vercel/config 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/dist/types.d.ts +7 -0
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -483,6 +483,13 @@ export interface VercelConfig {
483
483
  * Path to the directory containing the service manifest file (package.json, pyproject.toml, etc.). Defaults to "." (project root).
484
484
  */
485
485
  workspace?: string;
486
+ /**
487
+ * Preferred routing config alias for routePrefix/subdomain.
488
+ */
489
+ mount?: string | {
490
+ path?: string;
491
+ subdomain?: string;
492
+ };
486
493
  /**
487
494
  * URL prefix for routing (web services only).
488
495
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/config",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "A TypeScript SDK for programmatically configuring Vercel projects",
5
5
  "license": "MIT",
6
6
  "homepage": "https://vercel.com/docs/projects/project-configuration",