mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
9 lines
171 B
JavaScript
9 lines
171 B
JavaScript
function managerEntries(entry = []) {
|
|
return [...entry, require.resolve('./dist/manager.js')];
|
|
}
|
|
|
|
module.exports = {
|
|
managerEntries,
|
|
...require('./dist/preset'),
|
|
};
|