storybook/docs/snippets/common/main-config-swc.js.mdx
Valentin Palkovic 9796ff8653 Update docs
2024-01-09 09:31:47 +01:00

17 lines
246 B
Plaintext

```js
// .storybook/main.js
export default {
framework: {
name: '@storybook/your-framework',
options: {},
},
swc: (config, options) => {
return {
...config,
// Apply your custom SWC configuration
};
},
};
```