storybook/docs/snippets/common/storybook-client-globals-example-file.ts.mdx
2021-05-25 15:59:46 -04:00

8 lines
154 B
Plaintext

```ts
// vue/src/client/preview/globals.ts
import global from 'global';
const { window: globalWindow } = global;
globalWindow.STORYBOOK_ENV = 'vue';
```