mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 07:01:53 +08:00
- Per https://github.com/storybookjs/storybook/pull/25591 - `features.experimentalNextRSC` -> `features.experimentalRSC` - `parameters.nextjs.rsc` -> `parameters.react.rsc`
10 lines
107 B
Plaintext
10 lines
107 B
Plaintext
```js
|
|
// .storybook/main.js
|
|
export default {
|
|
// ...
|
|
features: {
|
|
experimentalRSC: true,
|
|
},
|
|
};
|
|
```
|