Skip to content
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

enhance(doc): enabled broken link detector #2122

Merged
merged 1 commit into from
Oct 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/docs/misc/contributing/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Thanks for your interest in contributing to Agenta! We appreciate your effort an

1. **Local Installation:** First, set up the project on your local machine. Follow the steps in our [Local Installation Guide](/self-host/host-locally).

2. **Understand the Project:** Familiarize yourself with our architecture and concepts by reading our [Guide](/guides/how_does_agenta_work).
2. **Understand the Project:** Familiarize yourself with our architecture and concepts by reading our [Guide](/concepts/architecture).

3. **Begin Development:** Once you've installed the project and understand its architecture, you're ready to contribute. See the [Development Mode Tutorial](/misc/contributing/development-mode) for instructions on running the code in development mode.

Expand Down
5 changes: 3 additions & 2 deletions docs/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ const config: Config = {
baseUrl: "/",
organizationName: "Agenta-AI",
projectName: "agenta",
onBrokenLinks: "ignore",
onBrokenMarkdownLinks: "warn",
onBrokenLinks: "throw",
onBrokenMarkdownLinks: "throw",
onBrokenAnchors: "throw",

// Even if you don't use internationalization, you can use this field to set
// useful metadata like html lang. For example, if your site is Chinese, you
Expand Down