From ceabfba767a1b9bbe113d91e1dc12d7f35ed8a94 Mon Sep 17 00:00:00 2001 From: James Ritchie Date: Tue, 1 Oct 2024 15:26:47 -0700 Subject: [PATCH] Added puppeteer imports to the puppeteer trigger.config snippets --- docs/config/config-file.mdx | 1 + docs/guides/examples/puppeteer.mdx | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/config/config-file.mdx b/docs/config/config-file.mdx index 92c71d001..b8d7c4ff0 100644 --- a/docs/config/config-file.mdx +++ b/docs/config/config-file.mdx @@ -482,6 +482,7 @@ To use Puppeteer in your project, add these build settings to your `trigger.conf ```ts trigger.config.ts import { defineConfig } from "@trigger.dev/sdk/v3"; +import { puppeteer } from "@trigger.dev/build/extensions/puppeteer"; export default defineConfig({ project: "", diff --git a/docs/guides/examples/puppeteer.mdx b/docs/guides/examples/puppeteer.mdx index 385997ac8..9ec41ea61 100644 --- a/docs/guides/examples/puppeteer.mdx +++ b/docs/guides/examples/puppeteer.mdx @@ -23,6 +23,7 @@ To use all examples on this page, you'll first need to add these build settings ```ts trigger.config.ts import { defineConfig } from "@trigger.dev/sdk/v3"; +import { puppeteer } from "@trigger.dev/build/extensions/puppeteer"; export default defineConfig({ project: "",