Skip to content
This repository has been archived by the owner on Mar 6, 2023. It is now read-only.

Commit

Permalink
Support defining a studio base path
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoerge committed Jun 22, 2020
1 parent f7d1fb3 commit c777a5d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/manifest/v2/vercel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import * as z from 'zod'
import {sanityCorsOrigin} from './common'
export const vercelDeployment = z.object({
provider: z.literal('vercel'),
corsOrigins: z.array(sanityCorsOrigin).optional()
corsOrigins: z.array(sanityCorsOrigin).optional(),
studio: z.object({basePath: z.string()}).optional()
})
export type VercelDeployment = z.infer<typeof vercelDeployment>

0 comments on commit c777a5d

Please sign in to comment.