mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:01:21 +08:00
16 lines
464 B
TypeScript
16 lines
464 B
TypeScript
const getFrameworkPresets = (framework: string) => {
|
|
try {
|
|
return [require.resolve(`./frameworks/${framework}/preset`)];
|
|
} catch (err) {
|
|
// there is no custom config for the user's framework, do nothing
|
|
return [];
|
|
}
|
|
};
|
|
|
|
module.exports = (storybookOptions: any, presetOptions: any) => {
|
|
return [
|
|
{ name: require.resolve('./frameworks/common/preset'), options: presetOptions },
|
|
...getFrameworkPresets(storybookOptions.framework),
|
|
];
|
|
};
|