Skip to content

Commit 069e80c

Browse files
ericdalloeca
andcommitted
Fix documentation links pointing to non-existent docs.eca.dev
🤖 Generated with [eca](https://eca.dev) Co-Authored-By: eca <noreply@eca.dev>
1 parent 2c58d9c commit 069e80c

3 files changed

Lines changed: 4 additions & 5 deletions

File tree

website/src/components/Footer.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
import { REPO_URL, DOCS_URL, SITE_URL } from '../constants';
2+
import { REPO_URL, SITE_URL } from '../constants';
33
---
44

55
<footer class="footer">
@@ -12,7 +12,7 @@ import { REPO_URL, DOCS_URL, SITE_URL } from '../constants';
1212
</div>
1313

1414
<div class="footer-links">
15-
<a href={`${DOCS_URL}/config/plugins/`} target="_blank" rel="noopener">Documentation</a>
15+
<a href={`${SITE_URL}/config/plugins/`} target="_blank" rel="noopener">Documentation</a>
1616
<a href={REPO_URL} target="_blank" rel="noopener">GitHub</a>
1717
<a href={`${REPO_URL}/blob/master/CONTRIBUTING.md`} target="_blank" rel="noopener">Contribute</a>
1818
<a href="https://join.slack.com/t/eca-dev/shared_invite/zt-34p6n16s1-_MwEJMr2F~gD2ol4gzntqw" target="_blank" rel="noopener">Community</a>

website/src/components/Header.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
import { REPO_URL, DOCS_URL, SITE_URL } from '../constants';
2+
import { REPO_URL, SITE_URL } from '../constants';
33
---
44

55
<header class="header">
@@ -14,7 +14,7 @@ import { REPO_URL, DOCS_URL, SITE_URL } from '../constants';
1414
</a>
1515

1616
<nav class="header-nav">
17-
<a href={`${DOCS_URL}/config/plugins/`} class="header-link" target="_blank" rel="noopener">
17+
<a href={`${SITE_URL}/config/plugins/`} class="header-link" target="_blank" rel="noopener">
1818
How plugins work
1919
</a>
2020
<a href={REPO_URL} class="header-link" target="_blank" rel="noopener">

website/src/constants.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// ---- External URLs (single source of truth) ----
22

33
export const REPO_URL = 'https://github.com/editor-code-assistant/eca-plugins';
4-
export const DOCS_URL = 'https://docs.eca.dev';
54
export const SITE_URL = 'https://eca.dev';
65

76
/** GitHub avatar URL for a given user and pixel size. */

0 commit comments

Comments
 (0)