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

docs: Refactoring the docs into the new page structure #2417

Merged
merged 17 commits into from
Mar 19, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
docs: redirect the broken link to the new docs structure links
  • Loading branch information
aindrajaya committed Mar 18, 2024
commit 7837c4597e86f9a743f216881198df4cb5a68f60
24 changes: 12 additions & 12 deletions docs/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,55 67,55 @@ const config = {
redirects: [
{
from: '/troubleshooting/failed-to-fetch',
to: '/guides/error-codes/something-amiss/',
to: '/troubleshooting/',
},
{
from: '/guides/troubleshooting/gpu-not-used/',
to: '/guides/common-error/not-using-gpu/',
to: '/troubleshooting/',
},
{
from: '/guides/troubleshooting/',
to: '/guides/error-codes/',
to: '/troubleshooting/',
},
{
from: '/troubleshooting/stuck-on-broken-build/',
to: '/guides/common-error/broken-build/',
to: '/troubleshooting/',
},
{
from: '/guides/troubleshooting/',
to: '/guides/error-codes/',
to: '/troubleshooting/',
},
{
from: '/troubleshooting/somethings-amiss/',
to: '/guides/error-codes/something-amiss/',
to: '/troubleshooting/',
},
{
from: '/troubleshooting/how-to-get-error-logs/',
to: '/guides/error-codes/how-to-get-error-logs/',
to: '/troubleshooting/',
},
{
from: '/troubleshooting/permission-denied/',
to: '/guides/error-codes/permission-denied/',
to: '/troubleshooting/',
},
{
from: '/troubleshooting/unexpected-token/',
to: '/guides/error-codes/unexpected-token/',
to: '/troubleshooting/',
},
{
from: '/troubleshooting/undefined-issue/',
to: '/guides/error-codes/undefined-issue/',
to: '/troubleshooting/',
},
{
from: '/install/',
to: '/guides/install/',
},
{
from: '/guides/using-models/',
to: '/guides/models-setup/',
to: '/guides/models/',
},
{
from: '/guides/using-extensions/',
to: '/guides/extensions/',
to: '/extensions/',
},
],
},
Expand Down
Loading