Skip to content

Commit

Permalink
fix(nx-dev): add redirects for new tutorials (#16355)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcabanes authored Apr 17, 2023
1 parent 4ee1ba5 commit 739e1ab
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions nx-dev/nx-dev/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,14 @@ module.exports = withNx({
permanent: true,
});
}
// Tutorials / Getting started
for (let s of Object.keys(redirectRules.conceptUrls)) {
rules.push({
source: s,
destination: redirectRules.conceptUrls[s],
permanent: true,
});
}

// Packages Indexes
for (let s of Object.keys(redirectRules.packagesIndexes)) {
Expand Down

1 comment on commit 739e1ab

@vercel
Copy link

@vercel vercel bot commented on 739e1ab Apr 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

nx-dev – ./

nx-dev-nrwl.vercel.app
nx-five.vercel.app
nx.dev
nx-dev-git-master-nrwl.vercel.app

Please sign in to comment.