mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
Make content conditional on required renderer
This commit is contained in:
parent
28207a486a
commit
19044b8edf
@ -2,6 +2,8 @@
|
||||
title: Storybook for Next.js
|
||||
---
|
||||
|
||||
export const SUPPORTED_RENDERER = 'react';
|
||||
|
||||
Storybook for Next.js is a [framework](../contribute/framework.md) that makes it easy to develop and test UI components in isolation for [Next.js](https://nextjs.org/) applications. It includes:
|
||||
|
||||
- 🔀 Routing
|
||||
@ -11,6 +13,20 @@ Storybook for Next.js is a [framework](../contribute/framework.md) that makes it
|
||||
- 🎛 Webpack & Babel config
|
||||
- 💫 and more!
|
||||
|
||||
<If notRenderer={SUPPORTED_RENDERER}>
|
||||
|
||||
<Callout variant="info">
|
||||
|
||||
Storybook for Next.js is only supported in [React](?renderer=react) projects.
|
||||
|
||||
</Callout>
|
||||
|
||||
<!-- End non-supported renderers -->
|
||||
|
||||
</If>
|
||||
|
||||
<If renderer={SUPPORTED_RENDERER}>
|
||||
|
||||
## Requirements
|
||||
|
||||
- Next.js ≥ 13.5
|
||||
@ -933,3 +949,7 @@ Props to pass to every instance of `next/image`. See [next/image docs](https://n
|
||||
Type: `string`
|
||||
|
||||
The absolute path to the `next.config.js` file. This is necessary if you have a custom `next.config.js` file that is not in the root directory of your project.
|
||||
|
||||
<!-- End supported renderers -->
|
||||
|
||||
</If>
|
||||
|
@ -2,6 +2,8 @@
|
||||
title: Storybook for Vue & Vite
|
||||
---
|
||||
|
||||
export const SUPPORTED_RENDERER = 'vue';
|
||||
|
||||
Storybook for Vue & Vite is a [framework](../contribute/framework.md) that makes it easy to develop and test UI components in isolation for [Vue](https://vuejs.org/) applications built with [Vite](https://vitejs.dev/). It includes:
|
||||
|
||||
- 🏎️ Pre-bundled for performance
|
||||
@ -9,6 +11,20 @@ Storybook for Vue & Vite is a [framework](../contribute/framework.md) that makes
|
||||
- 🧠 Comprehensive docgen
|
||||
- 💫 and more!
|
||||
|
||||
<If notRenderer={SUPPORTED_RENDERER}>
|
||||
|
||||
<Callout variant="info">
|
||||
|
||||
Storybook for Vue & Vite is only supported in [Vue](?renderer=vue) projects.
|
||||
|
||||
</Callout>
|
||||
|
||||
<!-- End non-supported renderers -->
|
||||
|
||||
</If>
|
||||
|
||||
<If renderer={SUPPORTED_RENDERER}>
|
||||
|
||||
## Requirements
|
||||
|
||||
- Vue ≥ 3
|
||||
@ -306,3 +322,7 @@ Default: `'vue-docgen-api'`
|
||||
Since: `8.0`
|
||||
|
||||
Choose which docgen tool to use when generating controls for your components. See [Using `vue-component-meta`](#using-vue-component-meta) for more information.
|
||||
|
||||
<!-- End supported renderers -->
|
||||
|
||||
</If>
|
||||
|
Loading…
x
Reference in New Issue
Block a user