docs(core): redirect bad nx 19 blog link (#23260)

Redirects incorrect link to the Nx 19 blog post
This commit is contained in:
Isaac Mann 2024-05-09 08:25:12 -04:00 committed by GitHub
parent 8f25ade650
commit bf51d19600
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1060,6 +1060,11 @@ const removedDeprecatedUrls = {
'/recipes/storybook/overview-react', // 80 views '/recipes/storybook/overview-react', // 80 views
}; };
// Blog post redirects
const blogPosts = {
'/blog/2024-05-07-nx-19-release': '/blog/2024-05-08-nx-19-release',
};
/** /**
* Public export API * Public export API
*/ */
@ -1089,4 +1094,5 @@ module.exports = {
eslintRename, eslintRename,
removedDeprecatedUrls, removedDeprecatedUrls,
troubleshootingOutOfRecipes, troubleshootingOutOfRecipes,
blogPosts,
}; };