storybook/docs/snippets/common/storybook-client-globals-example-file.ts.mdx
2021-11-04 23:51:08 +00:00

9 lines
155 B
Plaintext

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