-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create-React-App v2 and this package are conflicting due to Webpack version #20
Comments
Even I am facing the same issue. Removing 'docz-plugin-css' :
|
@swapnildubal In your case it might help you to add
|
I resolved the issue by removing docz-plugin-css and making below update in the doczrc.js: modifyBundlerConfig: (bundlerConfig) => { |
It would be useful to note somewhere that this plugin can be replaced (for the common use case of just needing to be able to modifyBundlerConfig: bundlerConfig => {
bundlerConfig.module.rules.push({
test: /.css$/,
use: ['style-loader', 'css-loader'],
})
return bundlerConfig
}, |
After installing this package and running dev server, I get this screen:
What is the most convenient way to go around this?
The text was updated successfully, but these errors were encountered: