Update Vercel warning verbiage ()

* Update Vercel warning verbiage

* Changeset and suggestion of functionPerRoute: false
This commit is contained in:
Matthew Phillips 2023-08-31 11:06:09 -04:00 committed by GitHub
parent dc29e0f797
commit 8fff0e9aeb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions
.changeset
packages/integrations/vercel/src/serverless

View file

@ -0,0 +1,5 @@
---
'@astrojs/vercel': patch
---
Update verbiage of Vercel warning

View file

@ -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 }));