-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(navigation): update relative links in documentation pages (#3)
* docs(navigation): update relative links in documentation pages Update internal navigation links to use relative paths across edge worker documentation pages and index file * chore(types): Add Astro type references to env declaration Add eslint-disable comments for TypeScript-eslint triple-slash references * chore(eslint): add ignore configuration for Astro files Extends ESLint configuration to exclude Astro files from linting * docs(navigation): update internal links in edge worker documentation Update relative links to absolute paths across edge worker documentation pages, ensuring consistent and correct navigation between sections I'm not sure it was working with the original relative paths on vercel but is not working with the same paths on cloudflare pages.
- Loading branch information
Showing
7 changed files
with
9 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,4 +46,5 @@ module.exports = [ | |
// Override or add rules here | ||
rules: {}, | ||
}, | ||
{ ignores: ['**/.astro'] }, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
// eslint-disable-next-line @typescript-eslint/triple-slash-reference | ||
/// <reference path="../.astro/types.d.ts" /> | ||
// eslint-disable-next-line @typescript-eslint/triple-slash-reference | ||
/// <reference types="astro/client" /> |