mirror of
https://github.com/withastro/astro.git
synced 2025-01-06 22:10:10 -05:00
b209e53358
Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
230 B
230 B
@astrojs/vercel |
---|
minor |
You can now configure how long your functions can run before timing out.
export default defineConfig({
output: "server",
adapter: vercel({
+ maxDuration: 60
}),
});