mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-01 05:05:25 +08:00
14 lines
305 B
JavaScript
14 lines
305 B
JavaScript
function managerEntries(entry = []) {
|
|
return [...entry, require.resolve('./dist/esm/register')];
|
|
}
|
|
|
|
function config(entry = []) {
|
|
return [
|
|
...entry,
|
|
require.resolve('./dist/esm/a11yRunner'),
|
|
require.resolve('./dist/esm/a11yHighlight'),
|
|
];
|
|
}
|
|
|
|
module.exports = { managerEntries, config };
|