redux-devtools/packages/redux-devtools-ui/.storybook/main.ts
Nathan Bierema 629419bd1b
Upgrade to Storybook 7 (#1647)
* Remove storybook

* Install storybook

* Fix

* Format

* Update

* Disable background
2024-04-01 20:48:58 +00:00

37 lines
1.1 KiB
TypeScript

import type { StorybookConfig } from '@storybook/react-webpack5';
import { join, dirname } from 'path';
/**
* This function is used to resolve the absolute path of a package.
* It is needed in projects that use Yarn PnP or are set up within a monorepo.
*/
function getAbsolutePath(value: string): any {
return dirname(require.resolve(join(value, 'package.json')));
}
const config: StorybookConfig = {
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|mjs|ts|tsx)'],
addons: [
getAbsolutePath('@storybook/addon-webpack5-compiler-swc'),
getAbsolutePath('@storybook/addon-onboarding'),
getAbsolutePath('@storybook/addon-links'),
{
name: getAbsolutePath('@storybook/addon-essentials'),
options: {
backgrounds: false,
},
},
getAbsolutePath('@chromatic-com/storybook'),
getAbsolutePath('@storybook/addon-interactions'),
],
framework: {
name: getAbsolutePath('@storybook/react-webpack5'),
options: {},
},
docs: {
autodocs: 'tag',
},
staticDirs: ['../fonts'],
};
export default config;