mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:01:21 +08:00
11 lines
228 B
Plaintext
11 lines
228 B
Plaintext
```js
|
|
// setupFile.js
|
|
|
|
import { setGlobalConfig } from '@storybook/testing-vue3';
|
|
|
|
// Storybook's preview file location
|
|
import * as globalStorybookConfig from './.storybook/preview';
|
|
|
|
setGlobalConfig(globalStorybookConfig);
|
|
```
|