-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Description Redirects zesty docs to readme Fixes #2487 ## Type of change Please delete options that are not relevant. - [x] New feature (non-breaking change which adds functionality) # How Has This Been Tested? Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. - [x] Manual Test # Screenshots / Screen recording https://github.com/user-attachments/assets/05a4fb40-231b-41e1-9a5c-46288f1b06d2 --------- Signed-off-by: Japheth Louie M. Gofredo <[email protected]>
- Loading branch information
Showing
4 changed files
with
58 additions
and
4 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
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 |
---|---|---|
@@ -0,0 +1,49 @@ | ||
const docsRedirects = [ | ||
{ | ||
source: '/docs/instances/api-reference/:path*', | ||
destination: 'https://docs.zesty.io/reference/instances-api-reference', | ||
permanent: true, | ||
}, | ||
{ | ||
source: '/docs/authentication/api-reference/:path*', | ||
destination: 'https://docs.zesty.io/reference/authentication-api-reference', | ||
permanent: true, | ||
}, | ||
{ | ||
source: '/docs/accounts/api-reference/:path*', | ||
destination: 'https://docs.zesty.io/reference/accounts-api-reference', | ||
permanent: true, | ||
}, | ||
{ | ||
source: '/docs/parsley/api-reference/:path*', | ||
destination: 'https://docs.zesty.io/docs/parsley', | ||
permanent: true, | ||
}, | ||
{ | ||
source: '/docs/media/api-reference/:path*', | ||
destination: 'https://docs.zesty.io/reference/media-api-reference', | ||
permanent: true, | ||
}, | ||
{ | ||
source: '/docs/media/api-reference/manager/:path*', | ||
destination: 'https://docs.zesty.io/reference/media-manager-api-reference', | ||
permanent: true, | ||
}, | ||
{ | ||
source: '/docs/media/api-reference/storage/:path*', | ||
destination: 'https://docs.zesty.io/reference/media-storage-api-reference', | ||
permanent: true, | ||
}, | ||
{ | ||
source: '/docs/media/api-reference/modify/:path*', | ||
destination: 'https://docs.zesty.io/reference/media-modify-api-reference', | ||
permanent: true, | ||
}, | ||
{ | ||
source: '/docs/media/api-reference/resolver/:path*', | ||
destination: 'https://docs.zesty.io/reference/media-resolver-api-reference', | ||
permanent: true, | ||
}, | ||
]; | ||
|
||
module.exports = { docsRedirects }; |
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