1 2 3 4 5 6 7 8 9 10 11 12 13 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 }), }); ```