Skip to content

Commit

Permalink
fix(deployment): deployment through vercel
Browse files Browse the repository at this point in the history
  • Loading branch information
Torof committed Dec 4, 2024
1 parent b5c935c commit 2c23e89
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"graph:deploy-arbi-sepolia": "cd subgraph && graph deploy ledgity-arbi-sepolia --version-label v0.0.1 ./subgraph.yaml --node https://subgraphs.alchemy.com/api/subgraphs/deploy --deploy-key 4SaXil3Dh3K9O --ipfs https://ipfs.satsuma.xyz",
"prisma:generate": "prisma generate",
"build:frontend": "yarn workspace ledgity-yield-frontend build",
"build:all": "yarn prisma:generate && yarn build:frontend",
"build": "yarn prisma:generate && yarn build:frontend",
"dev": "yarn workspace ledgity-yield-frontend dev"
},
"dependencies": {
Expand Down Expand Up @@ -112,7 +112,8 @@
"@graphql-mesh/runtime": "^0.103.8",
"@graphql-mesh/graphql": "^0.102.8",
"graphql": "^16.8.1",
"@envelop/core": "^5.0.0"
"@envelop/core": "^5.0.0",
"node-libcurl": "3.0.0"
},
"trustedDependencies": [
"sharp"
Expand Down
7 changes: 6 additions & 1 deletion vercel.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
"git": {
"deploymentEnabled": {
"main": false
}
},
"buildCommand": "yarn install --ignore-scripts && yarn build",
"installCommand": "yarn install --ignore-scripts",
"framework": "nextjs",
"outputDirectory": ".next"
}

}

0 comments on commit 2c23e89

Please sign in to comment.