Norbert de Langen c2bbe43d02
stage0
2022-07-21 11:24:07 +02:00

23 lines
858 B
TypeScript

import path from 'path';
import type { PresetProperty } from '@storybook/core-common';
import type { StorybookConfig } from './types';
export const addons: PresetProperty<'addons', StorybookConfig> = [
path.dirname(require.resolve(path.join('@storybook/preset-preact-webpack', 'package.json'))),
path.dirname(require.resolve(path.join('@storybook/preact', 'package.json'))),
];
export const core: PresetProperty<'core', StorybookConfig> = async (config, options) => {
const framework = await options.presets.apply<StorybookConfig['framework']>('framework');
return {
...config,
builder: {
name: path.dirname(
require.resolve(path.join('@storybook/builder-webpack5', 'package.json'))
) as '@storybook/builder-webpack5',
options: typeof framework === 'string' ? {} : framework.options.builder || {},
},
};
};