mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
23 lines
858 B
TypeScript
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 || {},
|
|
},
|
|
};
|
|
};
|