Skip to content

Commit 39b9ea5

Browse files
fix: Adjust vercel.json paths for Vercel root directory config
The Vercel project has rootDirectory set to "website", so build/dev commands run from within the website directory already. Remove the "cd website" prefix and adjust outputDirectory to "build".
1 parent 1947e1a commit 39b9ea5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

vercel.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"buildCommand": "cd website && yarn build:vercel",
3-
"devCommand": "cd website && yarn start",
4-
"outputDirectory": "website/build",
2+
"buildCommand": "yarn build:vercel",
3+
"devCommand": "yarn start",
4+
"outputDirectory": "build",
55
"installCommand": "yarn install",
66
"framework": null,
77
"git": {

0 commit comments

Comments
 (0)