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
If you are reporting a bug or requesting support, start here:
Bug or support request summary
This may already be an older issue, but I just noticed it. When building storybook it shows a nonsensical warning:
info @storybook/react v4.0.0-alpha.16
info
info => Loading custom addons config.
WARN => Custom configuration file redacted/.storybook/webpack.config.js is detected
WARN but impossible to import loader for .js
info => Loading custom webpack config (full-control mode).
From a quick investigation of the webpack config loader this is because interpret returns null for .js extensions (which is fine, since no loader is needed for them), which on the other hand storybook's webpack config loader misinterprets and warns that it can't load the loader (which it doesn't need). Regardless of the warning then it proceeds to require it so this is just a minor cosmetical issue.
Steps to reproduce
Build storybook with a custom webpack config in a js file. At the start of the build, it will show the above warning.
Please specify which version of Storybook and optionally any affected addons that you're running
@storybook/react v4.0.0-alpha.16
Affected platforms
I assume any, so long as a custom webpack.config.js file is present
The text was updated successfully, but these errors were encountered:
If you are reporting a bug or requesting support, start here:
Bug or support request summary
This may already be an older issue, but I just noticed it. When building storybook it shows a nonsensical warning:
From a quick investigation of the webpack config loader this is because
interpret
returns null for.js
extensions (which is fine, since no loader is needed for them), which on the other hand storybook's webpack config loader misinterprets and warns that it can't load the loader (which it doesn't need). Regardless of the warning then it proceeds to require it so this is just a minor cosmetical issue.Steps to reproduce
Build storybook with a custom webpack config in a js file. At the start of the build, it will show the above warning.
Please specify which version of Storybook and optionally any affected addons that you're running
Affected platforms
The text was updated successfully, but these errors were encountered: