mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:21:23 +08:00
16 lines
303 B
Plaintext
16 lines
303 B
Plaintext
```js
|
|
// my-preset/index.js
|
|
|
|
function managerEntries(entry = []) {
|
|
return [...entry, require.resolve('my-other-addon/register')];
|
|
}
|
|
|
|
const config = (entry = [], options) => {
|
|
return [...entry, require.resolve('my-other-addon/addDecorator')];
|
|
};
|
|
|
|
module.exports = {
|
|
managerEntries,
|
|
config,
|
|
};
|
|
``` |