aboutsummaryrefslogtreecommitdiff
path: root/trigger.config.ts
blob: df8140df49ca00948c5b6eb4e93e616db42d479f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import type { TriggerConfig } from "@trigger.dev/sdk/v3";

export const config: TriggerConfig = {
	project: "proj_jpvyydwtsyyknzufswcs",
	logLevel: "log",
	retries: {
		enabledInDev: true,
		default: {
			maxAttempts: 3,
			minTimeoutInMs: 1000,
			maxTimeoutInMs: 10000,
			factor: 2,
			randomize: true,
		},
	},
};