-
Notifications
You must be signed in to change notification settings - Fork 431
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
Had to add css loader prefix in app.jsx to successfully complete webpack process #197
Comments
Hi, Do you mind create a pull request with the fix? Thanks! |
Even with the plugin prefix does not work for me. Took a fresh cloned repo, then
After
|
There seem to be a bug in |
Closing this unless we can do anything to make this better... |
I have similar issue:
|
sadly css-loader hasn't fixed their issue yet :( |
I had the same error. css-loader is not working. Replaced and style-loader worked instantly. The following works : |
from:
import 'bootstrap/dist/css/bootstrap.min.css';
to:
import 'css!../node_modules/bootstrap/dist/css/bootstrap.min.css';
otherwise works great, thanks.
The text was updated successfully, but these errors were encountered: