-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
fix: clarify trigger.config.ts requirement in Vercel integration #3512
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,6 +14,10 @@ This eliminates the need to manually run the `trigger.dev deploy` command or mai | |
| well, since Trigger.dev builds your tasks from your GitHub repository. | ||
| </Note> | ||
|
|
||
| <Note> | ||
| Make sure you've completed the [Quickstart](/quickstart) first, including creating your `trigger.config.ts` file. | ||
| </Note> | ||
|
|
||
| ## Installation | ||
|
|
||
| You can connect Vercel from two entry points: | ||
|
|
@@ -89,6 +93,18 @@ You can connect Vercel from two entry points: | |
| from the repo root. | ||
| </Warning> | ||
|
|
||
| ## Required Trigger Config | ||
|
|
||
| Make sure your project includes a `trigger.config.ts` file in the root of your repository. | ||
|
|
||
| Trigger.dev looks for this file by default to configure your triggers. If it's missing, you may see an error like: | ||
|
|
||
| ``` | ||
| Error: The trigger config file was not found. By default, we look for a trigger.config.ts file in the root of your repository. | ||
| ``` | ||
|
Comment on lines
+102
to
+104
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🚩 Error message in 'Required Trigger Config' section may not match actual CLI output The error message shown at Was this helpful? React with 👍 or 👎 to provide feedback. |
||
|
|
||
| If your config file is located in a different directory, you can specify its path in your project's build configuration settings. | ||
|
|
||
| ## Environment variable sync | ||
|
|
||
| The integration syncs environment variables in both directions: | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🟡 Broken documentation link:
/quickstartshould be/quick-startThe new
<Note>links to/quickstart, but the actual page file isdocs/quick-start.mdxand the navigation indocs/docs.json:26lists it as"quick-start". There is no redirect from/quickstartto/quick-startin the redirects section ofdocs/docs.json:618-747. Other docs that link to this page use the correct/quick-startpath (e.g.,docs/introduction.mdx:9useshref="/quick-start"anddocs/guides/ai-agents/claude-code-trigger.mdx:14uses/quick-start). This will result in a 404 for users clicking the link.Was this helpful? React with 👍 or 👎 to provide feedback.