Tom Adler

Results 26 comments of Tom Adler

Thank you for the report! Unfortunately I am unable to help. This was created by other people and I have used it years ago. When the Google Code was closed,...

У меня почему-то были отключены оповещения об активности в этом репозитории, поэтому сегодня я в первый раз увидел ваш комментарий. К сожалению, пользы от этого немного: я не java-программист, и...

Seems like the webpack-extension-reloader has already been forked into https://github.com/SimplifyJobs/webpack-ext-reloader/

When I was investigating I was actually surprised to see that `map` is a lookup. It kind of looks like a part of configuration for `allowed`: here is the list...

Actually the `defaultProps` are also lost when used this way.

Apparently `renderComponent()` also assumes that component is a function

Indeed, adding the following to main.js makes the build pass: ```js async webpackFinal(config) { config.module.rules.push({ test: /.storybook\/preview.js/, resolve: { fullySpecified: false }, }) return config; }, ``` Personally, though, I...

I tried [modifying these lines](https://github.com/storybookjs/storybook/blob/928d2b191427471dd727ae69b14f4cbd92424032/lib/builder-webpack5/src/preview/iframe-webpack.config.ts#L43-L45) to remove the project path from the value. This way `clientApi` becomes simply `@storybook/client-api`. That resolves the issue and the build succeeds.

Meanwhile, [the workaround mentioned in #14877](https://github.com/storybookjs/storybook/issues/14877#issuecomment-881981075) helps with this issue as well. I find it even cleaner compared to the `"browser"` alias I mentioned in this bug report initially.