diff --git a/docs/generated/packages/angular/documents/overview.md b/docs/generated/packages/angular/documents/overview.md index 4b2f7cc572..745d008a65 100644 --- a/docs/generated/packages/angular/documents/overview.md +++ b/docs/generated/packages/angular/documents/overview.md @@ -33,6 +33,10 @@ yarn add -D @nx/angular npm install -D @nx/angular ``` +{% callout type="note" title="Angular Tutorials" %} +For a full tutorial experience, follow the [Angular Standalone Tutorial](/getting-started/tutorials/angular-standalone-tutorial) or the [Angular Monorepo Tutorial](/getting-started/tutorials/angular-monorepo-tutorial) +{% /callout %} + ## Using the Angular Plugin ### Generating an application diff --git a/docs/generated/packages/react/documents/overview.md b/docs/generated/packages/react/documents/overview.md index 0d13459856..4a06edc0f2 100644 --- a/docs/generated/packages/react/documents/overview.md +++ b/docs/generated/packages/react/documents/overview.md @@ -24,6 +24,10 @@ npm install -D @nx/react yarn add -D @nx/react ``` +{% callout type="note" title="React Tutorials" %} +For a full tutorial experience, follow the [React Standalone Tutorial](/getting-started/tutorials/react-standalone-tutorial) or the [React Monorepo Tutorial](/getting-started/tutorials/react-monorepo-tutorial) +{% /callout %} + ### Creating Applications and Libraries You can add a new application with the following: diff --git a/docs/generated/packages/vue/documents/overview.md b/docs/generated/packages/vue/documents/overview.md index 383208e589..ad64ceedbc 100644 --- a/docs/generated/packages/vue/documents/overview.md +++ b/docs/generated/packages/vue/documents/overview.md @@ -15,6 +15,10 @@ You can create a new workspace that uses Vue with one of the following commands: npx create-nx-workspace@latest --preset=vue ``` +{% callout type="note" title="Vue Standalone Tutorial" %} +For a full tutorial experience, follow the [Vue Standalone Tutorial](/getting-started/tutorials/vue-standalone-tutorial) +{% /callout %} + ## Add Vue to an existing workspace There are a number of ways to use Vue in your existing workspace. diff --git a/docs/shared/packages/angular/angular-plugin.md b/docs/shared/packages/angular/angular-plugin.md index 4b2f7cc572..745d008a65 100644 --- a/docs/shared/packages/angular/angular-plugin.md +++ b/docs/shared/packages/angular/angular-plugin.md @@ -33,6 +33,10 @@ yarn add -D @nx/angular npm install -D @nx/angular ``` +{% callout type="note" title="Angular Tutorials" %} +For a full tutorial experience, follow the [Angular Standalone Tutorial](/getting-started/tutorials/angular-standalone-tutorial) or the [Angular Monorepo Tutorial](/getting-started/tutorials/angular-monorepo-tutorial) +{% /callout %} + ## Using the Angular Plugin ### Generating an application diff --git a/docs/shared/packages/react/react-plugin.md b/docs/shared/packages/react/react-plugin.md index 0d13459856..4a06edc0f2 100644 --- a/docs/shared/packages/react/react-plugin.md +++ b/docs/shared/packages/react/react-plugin.md @@ -24,6 +24,10 @@ npm install -D @nx/react yarn add -D @nx/react ``` +{% callout type="note" title="React Tutorials" %} +For a full tutorial experience, follow the [React Standalone Tutorial](/getting-started/tutorials/react-standalone-tutorial) or the [React Monorepo Tutorial](/getting-started/tutorials/react-monorepo-tutorial) +{% /callout %} + ### Creating Applications and Libraries You can add a new application with the following: diff --git a/docs/shared/packages/vue/vue-plugin.md b/docs/shared/packages/vue/vue-plugin.md index 383208e589..ad64ceedbc 100644 --- a/docs/shared/packages/vue/vue-plugin.md +++ b/docs/shared/packages/vue/vue-plugin.md @@ -15,6 +15,10 @@ You can create a new workspace that uses Vue with one of the following commands: npx create-nx-workspace@latest --preset=vue ``` +{% callout type="note" title="Vue Standalone Tutorial" %} +For a full tutorial experience, follow the [Vue Standalone Tutorial](/getting-started/tutorials/vue-standalone-tutorial) +{% /callout %} + ## Add Vue to an existing workspace There are a number of ways to use Vue in your existing workspace. diff --git a/docs/shared/recipes/troubleshoot-cache-misses.md b/docs/shared/recipes/troubleshoot-cache-misses.md index 7c5915c112..f4e2de36a8 100644 --- a/docs/shared/recipes/troubleshoot-cache-misses.md +++ b/docs/shared/recipes/troubleshoot-cache-misses.md @@ -8,7 +8,7 @@ Problem: A task is being executed when you expect it to be replayed from the cac - Check the `inputs` and `namedInputs` defined in the project configuration and root `nx.json`. The `inputs` control whether a task will execute or replay from cache. - Check to see if there is an output file that is not being captured by the `outputs` for the task. The `outputs` property only controls what files are replayed from the cache, it doesn't dictate whether the cache is replayed, but an unaccounted output file could be modifying one of the inputs of the task. - - To check your input glob patterns file-by-file, you can get a list of all the files associated with each project by running: `nx graph --file=output.json` + - To check your input glob patterns file-by-file, you can get a list of all the files associated with each project by running `nx graph --file=output.json` or by clicking on a task in the task graph in the `nx graph` visualization. 1. Use the Nx Cloud troubleshooting tools - Make sure your repo is [connected to Nx Cloud](/core-features/cache-task-results#distributed-computation-caching)