storybook/docs/snippets/common/storybook-client-globals-example-file.ts.mdx
2022-12-09 20:44:55 +01:00

10 lines
171 B
Plaintext

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