diff --git a/docs/essentials/themes.md b/docs/essentials/themes.md index cdb199452ef0..fbe2384b3b01 100644 --- a/docs/essentials/themes.md +++ b/docs/essentials/themes.md @@ -8,7 +8,7 @@ Storybook's [Themes](https://github.com/storybookjs/storybook/tree/next/code/add ## Theme decorators -To make your themes accessible to your stories, `@storybook/addon-themes` exposes three [decorators](https://storybook.js.org/docs/react/writing-stories/decorators) for different methods of theming. +To make your themes accessible to your stories, `@storybook/addon-themes` exposes three [decorators](https://storybook.js.org/docs/writing-stories/decorators) for different methods of theming. ### JSX providers diff --git a/docs/faq.md b/docs/faq.md index 19e6c39bb7f7..0935097c3006 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -226,7 +226,7 @@ We're working on overcoming this limitation, and soon you'll be able to use them Storybook does not work unless you have at least one local story (or docs page) defined in your project. In this context, local means a `.stories.*` or `.mdx` file that is referenced in your project's `.storybook/main.js` config. -If you're in a [Storybook composition](https://storybook.js.org/docs/react/sharing/storybook-composition) scenario, where you have multiple Storybooks, and want to have an extra Storybook with no stories of its own, that serves as a "glue" for all the other Storybooks in a project for demo/documentation purposes, you can do the following steps: +If you're in a [Storybook composition](https://storybook.js.org/docs/sharing/storybook-composition) scenario, where you have multiple Storybooks, and want to have an extra Storybook with no stories of its own, that serves as a "glue" for all the other Storybooks in a project for demo/documentation purposes, you can do the following steps: Introduce a single `.mdx` docs page (addon-essentials or addon-docs required), that serves as an Introduction page, like so: @@ -507,7 +507,7 @@ import type { ComponentStory, ComponentMeta } from '@storybook/react'; const StoryMeta: ComponentMeta = { /* 👇 The title prop is optional. - * See https://storybook.js.org/docs/react/configure/overview#configure-story-loading + * See https://storybook.js.org/docs/configure/overview#configure-story-loading * to learn how to generate automatic titles */ title: 'Button', diff --git a/docs/sharing/storybook-composition.md b/docs/sharing/storybook-composition.md index a9e50a8c54d4..65d05b90bac6 100644 --- a/docs/sharing/storybook-composition.md +++ b/docs/sharing/storybook-composition.md @@ -95,7 +95,7 @@ If you're using Storybook 6.4, or higher, you can optimize your composition via -If you already enabled automatic code splitting via the [`storyStoreV7`](https://storybook.js.org/docs/react/builders/webpack#code-splitting), you won't need this flag as it will automatically generate the `index.json` file. +If you already enabled automatic code splitting via the [`storyStoreV7`](https://storybook.js.org/docs/builders/webpack#code-splitting), you won't need this flag as it will automatically generate the `index.json` file. diff --git a/docs/snippets/angular/build-storybook-production-mode.with-builder.js.mdx b/docs/snippets/angular/build-storybook-production-mode.with-builder.js.mdx index 36fcc549b41c..326bfdb04741 100644 --- a/docs/snippets/angular/build-storybook-production-mode.with-builder.js.mdx +++ b/docs/snippets/angular/build-storybook-production-mode.with-builder.js.mdx @@ -1,6 +1,6 @@ ```shell # Builds Storybook with Angular's custom builder -# See https://storybook.js.org/docs/angular/get-started/install +# See https://storybook.js.org/docs/get-started/install # to learn how to create the custom builder ng run my-project:build-storybook ``` diff --git a/docs/snippets/angular/button-story-default-export.ts.mdx b/docs/snippets/angular/button-story-default-export.ts.mdx index 1fde5eafe2ee..647a05214bab 100644 --- a/docs/snippets/angular/button-story-default-export.ts.mdx +++ b/docs/snippets/angular/button-story-default-export.ts.mdx @@ -7,7 +7,7 @@ import { Button } from './button.component'; const meta: Meta