We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fbb21b commit 3374282Copy full SHA for 3374282
astro.config.mjs
@@ -2,15 +2,12 @@ import { config } from 'dotenv'
2
import { defineConfig } from 'astro/config'
3
import vercel from '@astrojs/vercel/serverless'
4
5
-// eslint-disable-next-line functional/no-expression-statements
6
config()
7
8
export default defineConfig({
9
server: {
10
port: 3000,
11
},
12
output: 'server',
13
- adapter: vercel({
14
- maxDuration: 300,
15
- }),
+ adapter: vercel(),
16
})
vercel.json
@@ -0,0 +1,7 @@
1
+{
+ "functions": {
+ "src/pages/api/send-transactions/AchievementsSBT/*": {
+ "maxDuration": 300
+ }
+}
0 commit comments