-
-
Notifications
You must be signed in to change notification settings - Fork 608
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
CssSyntaxError with animation property #211
Comments
Same here |
I'm also getting an error when '@charset' is parsed. |
Has anyone found a fix for this? |
got same issue |
I've also experienced this. Animate.css invokes it in the first line, so there's definitely the possibility many others are also encountering it. Any update on a potential fix? |
I have solved the problem by changing " require('css!./file.css') " to " import 'file.css' ".I guess when you use babel plugin and css-loader plugin you will meet the problem. |
got same issue on normalize.css using import "css-loader!normalize.css" |
You should change " import 'css-loader!normalize.css' " to " import 'normalize.css' ". The right format is " import + path ". |
I'm getting this issue because we are compiling SASS including some vendor SASS that has the |
Any news on this? |
/cc @michael-ciniawsky maybe bug with old version |
Reopen if still any regressions with the latest version of plugins/loaders/webpack etc 😛 |
When i'm running the css-loader with the following code i get an error:
@charset "UTF-8";
.animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
z-index: 100;
}
Module build failed: CssSyntaxError: /css-loader!/development/flot.to.web/node_modules/style-loader/index.js!/development/flot.to.web/node_modules/css-loader/index.js!/development/flot.to.web/css/animate.css:5:1: Unknown word
The text was updated successfully, but these errors were encountered: