From aecd2398ae16c0213ccb526c5185f5a4e182253b Mon Sep 17 00:00:00 2001 From: lilnasy <69170106+lilnasy@users.noreply.github.com> Date: Wed, 18 Oct 2023 23:42:10 +0000 Subject: [PATCH] add changeset --- .changeset/lazy-actors-enjoy.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .changeset/lazy-actors-enjoy.md diff --git a/.changeset/lazy-actors-enjoy.md b/.changeset/lazy-actors-enjoy.md new file mode 100644 index 0000000000000..3896041b48462 --- /dev/null +++ b/.changeset/lazy-actors-enjoy.md @@ -0,0 +1,14 @@ +--- +'@astrojs/vercel': minor +--- + +You can now configure how long your functions can run before timing out. + +```diff +export default defineConfig({ + output: "server", + adapter: vercel({ ++ maxDuration: 60 + }), +}); +```