mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 03:41:05 +08:00
9 lines
194 B
Plaintext
9 lines
194 B
Plaintext
```js
|
|
// /my-addon/src/preset.js
|
|
|
|
function managerEntries(entry = []) {
|
|
return [...entry, require.resolve("./register")]; //👈 Addon implementation
|
|
}
|
|
|
|
module.exports = { managerEntries }
|
|
``` |