docs(core): adjust broken add to monorepo links
This commit is contained in:
parent
41e2c84c7d
commit
ab89351f62
@ -27,7 +27,7 @@ A few links to help you get started:
|
|||||||
|
|
||||||
- [Nx.Dev: Documentation, Guides, Interactive Tutorials](https://nx.dev)
|
- [Nx.Dev: Documentation, Guides, Interactive Tutorials](https://nx.dev)
|
||||||
- [Nx.Dev: Core Tutorials](https://nx.dev/getting-started/core-tutorial)
|
- [Nx.Dev: Core Tutorials](https://nx.dev/getting-started/core-tutorial)
|
||||||
- [Recipe: Adding Nx to an Existing Monorepo](https://nx.dev/recipe/adding-to-monorepo)
|
- [Recipe: Adding Nx to an Existing Monorepo](https://nx.dev/recipes/adopting-nx/adding-to-monorepo)
|
||||||
- [Official Nx YouTube Channel](https://www.youtube.com/c/Nrwl_io)
|
- [Official Nx YouTube Channel](https://www.youtube.com/c/Nrwl_io)
|
||||||
- [Blog Posts About Nx](https://blog.nrwl.io/nx/home)
|
- [Blog Posts About Nx](https://blog.nrwl.io/nx/home)
|
||||||
|
|
||||||
|
|||||||
@ -18,11 +18,11 @@ Get a pre-configured setup. Nx configures your favorite frameworks and lets you
|
|||||||
|
|
||||||
{% /persona %}
|
{% /persona %}
|
||||||
|
|
||||||
{% persona type="lerna" title="Add to an Existing Monorepo" url="/recipe/adding-to-monorepo" %}
|
{% persona type="lerna" title="Add to an Existing Monorepo" url="/recipes/adopting-nx/adding-to-monorepo" %}
|
||||||
|
|
||||||
Incrementally add Nx to your repo and enjoy faster CI runs and local development. All without modifying your existing setup.
|
Incrementally add Nx to your repo and enjoy faster CI runs and local development. All without modifying your existing setup.
|
||||||
|
|
||||||
- [Add Nx to an Existing Monorepo](/recipe/adding-to-monorepo)
|
- [Add Nx to an Existing Monorepo](/recipes/adopting-nx/adding-to-monorepo)
|
||||||
|
|
||||||
{% /persona %}
|
{% /persona %}
|
||||||
|
|
||||||
|
|||||||
@ -18,7 +18,7 @@ export function Migrate(): JSX.Element {
|
|||||||
</div>
|
</div>
|
||||||
<div className="mt-8 flex lg:mt-0 lg:flex-shrink-0">
|
<div className="mt-8 flex lg:mt-0 lg:flex-shrink-0">
|
||||||
<div className="inline-flex rounded-md">
|
<div className="inline-flex rounded-md">
|
||||||
<Link href="/recipe/adding-to-monorepo">
|
<Link href="/recipes/adopting-nx/adding-to-monorepo">
|
||||||
<a
|
<a
|
||||||
title="Start using Nx by creating a workspace"
|
title="Start using Nx by creating a workspace"
|
||||||
className="w-full flex-none rounded-full border border-transparent bg-slate-100 py-3 px-6 text-lg font-semibold leading-6 transition hover:bg-slate-200 focus:ring-2 focus:ring-offset-2 focus:ring-offset-white dark:bg-slate-800 dark:text-white dark:hover:bg-slate-700 sm:w-auto"
|
className="w-full flex-none rounded-full border border-transparent bg-slate-100 py-3 px-6 text-lg font-semibold leading-6 transition hover:bg-slate-200 focus:ring-2 focus:ring-offset-2 focus:ring-offset-white dark:bg-slate-800 dark:text-white dark:hover:bg-slate-700 sm:w-auto"
|
||||||
|
|||||||
@ -20,7 +20,7 @@ export function MonorepoStyles(): JSX.Element {
|
|||||||
<div className="mt-8 flex gap-16 font-normal">
|
<div className="mt-8 flex gap-16 font-normal">
|
||||||
<p className="max-w-xl text-lg text-slate-700 dark:text-slate-400">
|
<p className="max-w-xl text-lg text-slate-700 dark:text-slate-400">
|
||||||
Choose your style! Have a monorepo already?{' '}
|
Choose your style! Have a monorepo already?{' '}
|
||||||
<Link href="/recipe/adding-to-monorepo">
|
<Link href="/recipes/adopting-nx/adding-to-monorepo">
|
||||||
<a
|
<a
|
||||||
title="Install VSCode's native extension for Nx"
|
title="Install VSCode's native extension for Nx"
|
||||||
className="font-medium text-blue-500 dark:text-sky-500"
|
className="font-medium text-blue-500 dark:text-sky-500"
|
||||||
|
|||||||
@ -17,6 +17,6 @@ Simply run: `npx add-nx-to-monorepo` in your monorepo.
|
|||||||
|
|
||||||
## Learn More
|
## Learn More
|
||||||
|
|
||||||
- [Guide: Add Nx to Lerna / Yarn / PNPM / NPM Workspaces](/recipe/adding-to-monorepo#adding-nx-to-lernayarnpnpmnpm-workspace)
|
- [Guide: Add Nx to Lerna / Yarn / PNPM / NPM Workspaces](/recipes/adopting-nx/adding-to-monorepo#adding-nx-to-lernayarnpnpmnpm-workspace)
|
||||||
- [Video: https://youtu.be/Dq2ftPf3sn4]
|
- [Video: https://youtu.be/Dq2ftPf3sn4]
|
||||||
- See [https://github.com/nrwl/nx](https://github.com/nrwl/nx) to learn more about Nx.
|
- See [https://github.com/nrwl/nx](https://github.com/nrwl/nx) to learn more about Nx.
|
||||||
|
|||||||
@ -314,7 +314,7 @@ function printFinalMessage() {
|
|||||||
`- Run "${
|
`- Run "${
|
||||||
getPackageManagerCommand().exec
|
getPackageManagerCommand().exec
|
||||||
} nx graph" to see the structure of the monorepo.`,
|
} nx graph" to see the structure of the monorepo.`,
|
||||||
`- Learn more at https://nx.dev/recipe/adding-to-monorepo`,
|
`- Learn more at https://nx.dev/recipes/adopting-nx/adding-to-monorepo`,
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@ -52,7 +52,7 @@ npx add-nx-to-monorepo@latest
|
|||||||
A few links to help you get started:
|
A few links to help you get started:
|
||||||
|
|
||||||
- [Nx.Dev: Documentation, Guides, Interactive Tutorials](https://nx.dev)
|
- [Nx.Dev: Documentation, Guides, Interactive Tutorials](https://nx.dev)
|
||||||
- [Tutorial: Adding Nx to an Existing Monorepo](/recipe/adding-to-monorepo)
|
- [Tutorial: Adding Nx to an Existing Monorepo](/recipes/adopting-nx/adding-to-monorepo)
|
||||||
- [Official Nx YouTube Channel](https://www.youtube.com/c/Nrwl_io)
|
- [Official Nx YouTube Channel](https://www.youtube.com/c/Nrwl_io)
|
||||||
- [Blog Posts About Nx](https://blog.nrwl.io/nx/home)
|
- [Blog Posts About Nx](https://blog.nrwl.io/nx/home)
|
||||||
|
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
A few links to help you get started:
|
A few links to help you get started:
|
||||||
|
|
||||||
- [Nx.Dev: Documentation, Guides, Interactive Tutorials](https://nx.dev)
|
- [Nx.Dev: Documentation, Guides, Interactive Tutorials](https://nx.dev)
|
||||||
- [Tutorial: Adding Nx to an Existing Monorepo](/recipe/adding-to-monorepo)
|
- [Tutorial: Adding Nx to an Existing Monorepo](/recipes/adopting-nx/adding-to-monorepo)
|
||||||
- [Official Nx YouTube Channel](https://www.youtube.com/c/Nrwl_io)
|
- [Official Nx YouTube Channel](https://www.youtube.com/c/Nrwl_io)
|
||||||
- [Blog Posts About Nx](https://blog.nrwl.io/nx/home)
|
- [Blog Posts About Nx](https://blog.nrwl.io/nx/home)
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user