mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 03:41:06 +08:00
9 lines
181 B
TypeScript
9 lines
181 B
TypeScript
// @ts-expect-error (Converted from ts-ignore)
|
|
import global from 'global';
|
|
|
|
const { window: globalWindow } = global;
|
|
|
|
if (globalWindow) {
|
|
globalWindow.STORYBOOK_ENV = 'react';
|
|
}
|