1
0
mirror of https://github.com/storybookjs/storybook.git synced 2025-04-09 00:19:13 +08:00
2021-05-14 00:33:00 +08:00

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 };