mirror of
				https://github.com/reduxjs/redux-devtools.git
				synced 2025-11-04 09:57:26 +03:00 
			
		
		
		
	* chore(deps): update storybook monorepo to v9 * Updates --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
		
			
				
	
	
		
			22 lines
		
	
	
		
			687 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			687 B
		
	
	
	
		
			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-onboarding')],
 | 
						|
  framework: {
 | 
						|
    name: getAbsolutePath('@storybook/react-vite'),
 | 
						|
    options: {},
 | 
						|
  },
 | 
						|
  staticDirs: ['../fonts'],
 | 
						|
};
 | 
						|
export default config;
 |