mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Ensure check works in node too
This commit is contained in:
parent
15ad3008ab
commit
f864df8c47
@ -389,7 +389,7 @@ Storyshots is not currently compatible with the v7 store. However, you can use t
|
||||
|
||||
```js
|
||||
features: {
|
||||
storyStoreV7: !global.navigator.userAgent.match('jsdom');
|
||||
storyStoreV7: !global.navigator?.userAgent?.match?.('jsdom');
|
||||
}
|
||||
```
|
||||
|
||||
|
@ -1,6 +1,5 @@
|
||||
import type { StorybookConfig } from '@storybook/react/types';
|
||||
|
||||
console.log(global.navigator.userAgent);
|
||||
const config: StorybookConfig = {
|
||||
stories: [
|
||||
{
|
||||
@ -29,7 +28,7 @@ const config: StorybookConfig = {
|
||||
features: {
|
||||
postcss: false,
|
||||
// modernInlineRender: true,
|
||||
storyStoreV7: !global.navigator.userAgent.match('jsdom'),
|
||||
storyStoreV7: !global.navigator?.userAgent?.match?.('jsdom'),
|
||||
buildStoriesJson: true,
|
||||
babelModeV7: true,
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user