mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
10 lines
215 B
Plaintext
10 lines
215 B
Plaintext
```js
|
|
// .storybook/preview.js
|
|
|
|
export const parameters = {
|
|
viewport: {
|
|
viewports: newViewports, // newViewports would be an ViewportMap. (see below for examples)
|
|
defaultViewport: 'someDefault',
|
|
},
|
|
}
|
|
``` |