-
-
Notifications
You must be signed in to change notification settings - Fork 73
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
Fix behaviour when config loading failes #26
Comments
Maybe we need to add check is |
+ result === undefined ? { config: {} } : result
- result = result.config || {} should do the job |
We could close it? |
@ai yep :) |
Hello. I still get this problem. I think this should be the correct fix instead... 😉 + result = (result === undefined) ? { config: {} } : result
- result === undefined ? { config: {} } : result |
Yeah, you forgot to assign a value to a variable. And one more thing: |
@kevinlaw91 @Azrael25 👍 fix it asap |
I have no postcss configs. And several log messages at webpack log as result of using postcss-loader.
The text was updated successfully, but these errors were encountered: