diff options
author | 2022-04-21 14:24:09 -0700 | |
---|---|---|
committer | 2022-04-21 14:24:09 -0700 | |
commit | 0b432c087a90536e050eac64bfbc6f898210dba6 (patch) | |
tree | 546b25f33f74ec8a146d9aec8d8d85ffb9a26a50 | |
parent | f3586cff41432e84c0fd98c86aa6e085957bbdbf (diff) | |
download | astro-0b432c087a90536e050eac64bfbc6f898210dba6.tar.gz astro-0b432c087a90536e050eac64bfbc6f898210dba6.tar.zst astro-0b432c087a90536e050eac64bfbc6f898210dba6.zip |
Update README.md
-rw-r--r-- | packages/integrations/vercel/README.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/integrations/vercel/README.md b/packages/integrations/vercel/README.md index 4b63aed01..0a7a20225 100644 --- a/packages/integrations/vercel/README.md +++ b/packages/integrations/vercel/README.md @@ -20,3 +20,7 @@ Now you can deploy! ```shell vercel ``` + +## Limitations + +By default, Vercel doesn't include npm installed files & packages from your project's `./node_modules` folder. To address this, the `@astrojs/vercel` adapter automatically bundles your final build output using `esbuild`. There is no action needed on your part to enable this, but be aware that some complex packages (example: [puppeteer](https://github.com/puppeteer/puppeteer)) do not support bundling and therefore will not work properly with this adapter. |