mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 11:11:53 +08:00
17 lines
246 B
Plaintext
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
|
|
};
|
|
},
|
|
};
|
|
```
|