mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 01:14:47 +08:00
10 lines
138 B
Plaintext
10 lines
138 B
Plaintext
```js
|
|
// .storybook/main.js
|
|
|
|
const path = require('path');
|
|
|
|
module.exports = {
|
|
addons: [path.resolve('./.storybook/my-preset')],
|
|
};
|
|
```
|