storybook/docs/snippets/common/storybook-client-globals-example-file.ts.mdx
2022-11-17 16:33:22 +01:00

10 lines
156 B
Plaintext

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