This file is used to configure your project and how it’s built.
The trigger.config.ts file is used to configure your Trigger.dev project. It is a TypeScript file at the root of your project that exports a default configuration object. Here’s an example:
trigger.config.ts
Copy
Ask AI
import { defineConfig } from "@trigger.dev/sdk/v3";export default defineConfig({ //Your project ref (you can see it on the Project settings page in the dashboard) project: "proj_gtcwttqhhtlasxgfuhxs", //The paths for your trigger folders dirs: ["./trigger"], retries: { //If you want to retry a task in dev mode (when using the CLI) enabledInDev: false, //the default retry settings. Used if you don't specify on a task. default: { maxAttempts: 3, minTimeoutInMs: 1000, maxTimeoutInMs: 10000, factor: 2, randomize: true, }, },});
The config file handles a lot of things, like:
Specifying where your trigger tasks are located using the dirs option.
Setting the default retry settings.
Configuring OpenTelemetry instrumentations.
Customizing the build process.
Adding global task lifecycle functions.
The config file is bundled with your project, so code imported in the config file is also bundled,
which can have an effect on build times and cold start duration. One important qualification is
anything defined in the build config is automatically stripped out of the config file, and
imports used inside build config with be tree-shaken out.
We use OpenTelemetry (OTEL) for our run logs. This means you get a lot of information about your tasks with no effort. But you probably want to add more information to your logs. For example, here’s all the Prisma calls automatically logged:Here we add Prisma and OpenAI instrumentations to your trigger.config.ts file.
trigger.config.ts
Copy
Ask AI
import { defineConfig } from "@trigger.dev/sdk/v3";import { PrismaInstrumentation } from "@prisma/instrumentation";import { OpenAIInstrumentation } from "@traceloop/instrumentation-openai";export default defineConfig({ //..other stuff instrumentations: [new PrismaInstrumentation(), new OpenAIInstrumentation()],});
You can customize the build process using the build option:
trigger.config.ts
Copy
Ask AI
import { defineConfig } from "@trigger.dev/sdk/v3";export default defineConfig({ //..other stuff build: { // Don't bundle these packages external: ["header-generator"], },});
The trigger.config.ts file is included in the bundle, but with the build configuration
stripped out. These means any imports only used inside the build configuration are also removed
from the final bundle.
When a package is excluded from the bundle, it will be added to a dynamically generated package.json file in the build directory. The version of the package will be the same as the version found in your node_modules directory.Each entry in the external should be a package name, not necessarily the import path. For example, if you want to exclude the ai package, but you are importing ai/rsc, you should just include ai in the external array:
Any packages that install or build a native binary should be added to external, as native binaries
cannot be bundled. For example, re2, sharp, and sqlite3 should be added to external.
You can customize the jsx options that are passed to esbuild using the jsx option:
trigger.config.ts
Copy
Ask AI
import { defineConfig } from "@trigger.dev/sdk/v3";export default defineConfig({ //..other stuff build: { jsx: { // Use the Fragment component instead of React.Fragment fragment: "Fragment", // Use the h function instead of React.createElement factory: "h", // Turn off automatic runtime automatic: false, }, },});
These conditions effect how imports are resolved during the build process. For example, the react-server condition will resolve ai/rsc to the server version of the ai/rsc export.Custom conditions will also be passed to the node runtime when running your tasks.
Build extension allow you to hook into the build system and customize the build process or the resulting bundle and container image (in the case of deploying). You can use pre-built extensions by installing the @trigger.dev/build package into your devDependencies, or you can create your own.
This will copy the files specified in the files array to the build directory. The files array can contain globs. The output paths will match the path of the file, relative to the root of the project.
The root of the project is the directory that contains the trigger.config.ts file
This allows you to include additional packages in the build that are not automatically included via imports. This is useful if you want to install a package that includes a CLI tool that you want to invoke in your tasks via exec. We will try to automatically resolve the version of the package but you can specify the version by using the @ symbol:
If you need support for the emitDecoratorMetadata typescript compiler option, import the emitDecoratorMetadata build extension and use it in your trigger.config.ts file:
This is usually required if you are using certain ORMs, like TypeORM, that require this option to be enabled. It’s not enabled by default because there is a performance cost to enabling it.
emitDecoratorMetadata works by hooking into the esbuild bundle process and using the TypeScript
compiler API to compile files where we detect the use of decorators. This means you must have
emitDecoratorMetadata enabled in your tsconfig.json file, as well as typescript installed in
your devDependencies.
If you are using Prisma, you should use the prisma build extension.
Automatically handles copying prisma files to the build directory.
Generates the prisma client during the deploy process
Optionally will migrate the database during the deploy process
Support for TypedSQL and multiple schema files.
You can use it for a simple Prisma setup like this:
Copy
Ask AI
import { defineConfig } from "@trigger.dev/sdk/v3";import { prismaExtension } from "@trigger.dev/build/extensions/prisma";export default defineConfig({ build: { extensions: [ prismaExtension({ version: "5.19.0", // optional, we'll automatically detect the version if not provided schema: "prisma/schema.prisma", }), ], },});
This does not have any effect when running the dev command, only when running the deploy
command.
If you want to also run migrations during the build process, you can pass in the migrate option:
Copy
Ask AI
import { defineConfig } from "@trigger.dev/sdk/v3";import { prismaExtension } from "@trigger.dev/build/extensions/prisma";export default defineConfig({ project: "<project ref>", build: { extensions: [ prismaExtension({ schema: "prisma/schema.prisma", migrate: true, directUrlEnvVarName: "DATABASE_URL_UNPOOLED", // optional - the name of the environment variable that contains the direct database URL if you are using a direct database URL }), ], },});
If you have multiple generator statements defined in your schema file, you can pass in the clientGenerator option to specify the prisma-client-js generator, which will prevent other generators from being generated:
Copy
Ask AI
datasource db { provider = "postgresql" url = env("DATABASE_URL") directUrl = env("DATABASE_URL_UNPOOLED")}// We only want to generate the prisma-client-js generatorgenerator client { provider = "prisma-client-js"}generator kysely { provider = "prisma-kysely" output = "../../src/kysely" enumFileName = "enums.ts" fileName = "types.ts"}
If you are using TypedSQL, you’ll need to enable it via the typedSql option:
The prismaExtension will inject the DATABASE_URL environment variable into the build process. Learn more about setting environment variables for deploying in our Environment Variables guide.These environment variables are only used during the build process and are not embedded in the final container image.
WEB SCRAPING: When web scraping, you MUST use a proxy to comply with our terms of service. Direct scraping of third-party websites without the site owner’s permission using Trigger.dev Cloud is prohibited and will result in account suspension. See this example which uses a proxy.
To use Puppeteer in your project, add these build settings to your trigger.config.ts file:
trigger.config.ts
Copy
Ask AI
import { defineConfig } from "@trigger.dev/sdk/v3";import { puppeteer } from "@trigger.dev/build/extensions/puppeteer";export default defineConfig({ project: "<project ref>", // Your other config settings... build: { extensions: [puppeteer()], },});
And add the following environment variable in your Trigger.dev dashboard on the Environment Variables page:
You can add the ffmpeg build extension to your build process:
Copy
Ask AI
import { defineConfig } from "@trigger.dev/sdk/v3";import { ffmpeg } from "@trigger.dev/build/extensions/core";export default defineConfig({ // Your other config settings... build: { extensions: [ffmpeg()], },});
By default, this will install the version of ffmpeg that is available in the Debian package manager. If you need a specific version, you can pass in the version as an argument:
This extension will also add the FFMPEG_PATH and FFPROBE_PATH to your environment variables, making it easy to use popular ffmpeg libraries like fluent-ffmpeg.Follow this example to get setup with Trigger.dev and FFmpeg in your project.
You can easily add existing or custom esbuild plugins to your build process using the esbuildPlugin extension:
Copy
Ask AI
import { defineConfig } from "@trigger.dev/sdk/v3";import { esbuildPlugin } from "@trigger.dev/build/extensions";import { sentryEsbuildPlugin } from "@sentry/esbuild-plugin";export default defineConfig({ project: "<project ref>", build: { extensions: [ esbuildPlugin( sentryEsbuildPlugin({ org: process.env.SENTRY_ORG, project: process.env.SENTRY_PROJECT, authToken: process.env.SENTRY_AUTH_TOKEN, }), // optional - only runs during the deploy command, and adds the plugin to the end of the list of plugins { placement: "last", target: "deploy" } ), ], },});
You can create your own extensions to further customize the build process. Extensions are an object with a name and zero or more lifecycle hooks (onBuildStart and onBuildComplete) that allow you to modify the BuildContext object that is passed to the build process through adding layers. For example, this is how the aptGet extension is implemented:
We’ll be expanding the documentation on how to create custom extensions in the future, but for now you are encouraged to look at the existing extensions in the @trigger.dev/build package for inspiration, which you can see in our repo here