When i run my storybook sometimes my components are missing.
so i have
"... New folderworkingtestwithpawelsrccomponentsAi4Process_mylib_test2demo.stories.tsx"
but storybook wont see the file
here is my .storybook/main.js
/** @type { import('@storybook/react-webpack5').StorybookConfig } */
const config = {
stories: ['../src/**/*.stories.@(js|jsx|ts|tsx)'],
addons: ['@storybook/addon-links', '@storybook/addon-essentials'],
framework: {
name: '@storybook/react-webpack5'
},
docs: {
autodocs: 'tag'
}
};
export default config;
q1) what do i need to do to fix it so storybook sees my commponents?
q2) what more info would be useful?
q3) what did i do to deserve this?