You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After updating to 7.0.0-beta.42, we're receiving the following error after starting storybook:
ERR! Error: No configuration files have been found in your configDir (C:\dev\.storybook).
ERR! Storybook needs "main.js" file, please add it.
ERR! at validateConfigurationFiles (C:\dev\node_modules\@storybook\core-common\dist\index.js:12:21)
ERR! at async loadMainConfig (C:\dev\node_modules\@storybook\core-common\dist\index.js:22:5699)
ERR! at async buildDevStandalone (C:\dev\node_modules\@storybook\core-server\dist\index.js:33:1294)
ERR! at async withTelemetry (C:\dev\node_modules\@storybook\core-server\dist\index.js:33:5568)
### Additional context
Additional Notes:
- This works fine with `7.0.0-beta.41`
- We are using a main.ts in our config folder.
- We have tried a clean install (remove node_modules, lock file then reinstall)
Contents of `main.ts`:
```ts
export default {
stories: ['../src/**/*.stories.mdx', '../src/**/*.stories.@(js|jsx|ts|tsx)'],
addons: [
'@storybook/addon-links',
'@storybook/addon-essentials',
'@storybook/addon-interactions',
],
framework: '@storybook/angular',
core: {
builder: '@storybook/builder-webpack5',
disableTelemetry: true,
},
};
The text was updated successfully, but these errors were encountered:
I can confirm 7.0.0-beta-43 has fixed the issue. Thank you very much @shilman ! I noticed we're getting a peer dependency issue for glob now. I'll file a separate ticket for that.
Describe the bug
After updating to
7.0.0-beta.42
, we're receiving the following error after starting storybook:To Reproduce
No response
System
The text was updated successfully, but these errors were encountered: