mirror of
				https://github.com/reduxjs/redux-devtools.git
				synced 2025-10-31 16:07:45 +03:00 
			
		
		
		
	* Migrate * Config updates * Remove * No require-from-string * Update lock file * Fix types * Doesn't work * Update to CSF3
		
			
				
	
	
		
			25 lines
		
	
	
		
			506 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			506 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import type { StorybookConfig } from '@storybook/react-webpack5';
 | |
| 
 | |
| const config: StorybookConfig = {
 | |
|   stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|ts|tsx)'],
 | |
|   addons: [
 | |
|     '@storybook/addon-links',
 | |
|     {
 | |
|       name: '@storybook/addon-essentials',
 | |
|       options: {
 | |
|         backgrounds: false,
 | |
|       },
 | |
|     },
 | |
|     '@storybook/addon-interactions',
 | |
|   ],
 | |
|   framework: {
 | |
|     name: '@storybook/react-webpack5',
 | |
|     options: {},
 | |
|   },
 | |
|   docs: {
 | |
|     autodocs: 'tag',
 | |
|   },
 | |
| };
 | |
| 
 | |
| export default config;
 |