Skip to content

Commit

Permalink
Merge pull request #274 from birkskyum/print-preset-in-error
Browse files Browse the repository at this point in the history
Print preset in error
  • Loading branch information
nksaraf committed Apr 10, 2024
2 parents 9f150c5 + f110721 commit 6f3d81b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/vinxi/bin/cli.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ const command = defineCommand({
break;
default:
log(
"Couldn't run an app built with the ${} preset locally. Deploy the app to a provider that supports it.",
`Couldn't run an app built with the ${process.env.SERVER_PRESET} preset locally. Deploy the app to a provider that supports it.`,
);
}
},
Expand Down Expand Up @@ -338,7 +338,7 @@ const command = defineCommand({
break;
default:
log(
"Couldn't run an app built with the ${} preset locally. Deploy the app to a provider that supports it.",
`Couldn't run an app built with the ${process.env.SERVER_PRESET} preset locally. Deploy the app to a provider that supports it.`,
);
}
},
Expand Down

0 comments on commit 6f3d81b

Please sign in to comment.