codewreaker
codewreaker
I had the same problem, tried all the solutions, nothing worked. I guess I will have to use another library for now. @davidguttman please let us know if you get...
fixed mine by calling storybook directly instead of using the @nx/storybook:storybook executor and in the rsbuildFinal point your tsConfigPath to the project's typescript so it can resolve your paths. Finally...
```json //in project.json targets "storybook":{ "executor":"nx:run-commands", "options": { "commands": "storybook dev -c [configpath]" } } ``` ```ts //in .storybook/main.ts const config:StorybookConfig = { //... rest of code rsbuildFinal: async (config)=>{...
This seems to be a big issue. I've tried adding NodePluginPolyfill to no avail in the webpackFinal. @Jackson-Tsai solution allows you to bypass the error but I am having to...