Skip to content

Commit

Permalink
Update Vercel warning verbiage (#8328)
Browse files Browse the repository at this point in the history
* Update Vercel warning verbiage

* Changeset and suggestion of functionPerRoute: false
  • Loading branch information
matthewp authored Aug 31, 2023
1 parent dc29e0f commit 8fff0e9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/nine-terms-reply.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@astrojs/vercel': patch
---

Update verbiage of Vercel warning
4 changes: 3 additions & 1 deletion packages/integrations/vercel/src/serverless/adapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,9 @@ export default function vercelServerless({
'astro:config:done': ({ setAdapter, config, logger }) => {
if (functionPerRoute === true) {
logger.warn(
"The Vercel plans might have limits to the number of functions you can create, make sure to check them if you don't want to incur into additional costs."
`Vercel's hosting plans might have limits to the number of functions you can create.
Make sure to check your plan carefully to avoid incurring additional costs.
You can set functionPerRoute: false to prevent surpassing the limit.`
);
}
setAdapter(getAdapter({ functionPerRoute, edgeMiddleware }));
Expand Down

0 comments on commit 8fff0e9

Please sign in to comment.