mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 21:31:48 +08:00
- Per https://github.com/storybookjs/storybook/pull/25591 - `features.experimentalNextRSC` -> `features.experimentalRSC` - `parameters.nextjs.rsc` -> `parameters.react.rsc`
14 lines
202 B
Plaintext
14 lines
202 B
Plaintext
```ts
|
|
// .storybook/main.ts
|
|
import { StorybookConfig } from '@storybook/nextjs';
|
|
|
|
const config: StorybookConfig = {
|
|
// ...
|
|
features: {
|
|
experimentalRSC: true,
|
|
},
|
|
};
|
|
|
|
export default config;
|
|
```
|