mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 12:11:06 +08:00
28 lines
694 B
JavaScript
28 lines
694 B
JavaScript
/* eslint-disable no-param-reassign */
|
|
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'),
|
|
];
|
|
}
|
|
|
|
async function webpack(webpackConfig, options) {
|
|
const core = await options.presets.apply('core');
|
|
if ((core && core.builder) !== 'webpack5') {
|
|
return webpackConfig;
|
|
}
|
|
if (!webpackConfig.resolve.fallback) {
|
|
webpackConfig.resolve.fallback = {};
|
|
}
|
|
webpackConfig.resolve.fallback.crypto = false;
|
|
|
|
return webpackConfig;
|
|
}
|
|
|
|
module.exports = { managerEntries, config, webpack };
|