## Current Behavior We currently do not have support for Storybook 9, nor any migrations to help users switch to it. ## Expected Behavior Support Storybook 9 and add a migration for users to switch to v9 BREAKING CHANGE: Remove deprecated generators: `@nx/storybook:cypress-project`, `@nx/react-native:storybook-configuration`, `@nx/react-native:stories`, `@nx/react-native:component-story`
14 lines
345 B
TypeScript
14 lines
345 B
TypeScript
import type { StorybookConfig } from '@storybook/react-webpack5';
|
|
|
|
const config: StorybookConfig = {
|
|
stories: ['../src/lib/**/*.stories.@(mdx|js|jsx|ts|tsx)'],
|
|
addons: ['@storybook/addon-docs', '@nx/react/plugins/storybook'],
|
|
framework: {
|
|
name: '@storybook/react-webpack5',
|
|
options: {},
|
|
},
|
|
docs: {},
|
|
};
|
|
|
|
export default config;
|