storybook/docs/snippets/web-components/my-component-vite-env-variables.js.mdx
2023-07-25 17:06:41 +01:00

15 lines
234 B
Plaintext

```js
// MyComponent.stories.js
export default {
component: 'my-component',
};
export const ExampleStory = {
args: {
propertyA: import.meta.env.STORYBOOK_DATA_KEY,
propertyB: import.meta.env.VITE_CUSTOM_VAR,
},
};
```