Skip to content

Commit

Permalink
fix(vercel): specify build env vars as a string (#10436)
Browse files Browse the repository at this point in the history
Quick follow up to #10355. The
value of these env vars have to be strings.
  • Loading branch information
jtoar committed Apr 10, 2024
1 parent 162242b commit 86590fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/commands/setup/deploy/providers/vercel.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function writeVercelConfigTask({ overwriteExisting = false } = {}) {
const vercelConfig = {
build: {
env: {
ENABLE_EXPERIMENTAL_COREPACK: 1,
ENABLE_EXPERIMENTAL_COREPACK: '1',
},
},
}
Expand Down

0 comments on commit 86590fc

Please sign in to comment.