We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
my webpack.config.js { test: /\.css$/, use: ['style-loader', 'css-loader'] } index.css body{ background-color: #f4f4f4; }
{ test: /\.css$/, use: ['style-loader', 'css-loader'] }
body{ background-color: #f4f4f4; }
in the index.js
import './style/index.css'
and Chrome give this error
Uncaught SyntaxError: missing ) after argument list
but when i use 'webpack' in git bash it work correct, the body background become #f4f4f4.
The text was updated successfully, but these errors were encountered:
Please provide a repository reproducing the issue.
Sorry, something went wrong.
I'm closing this issue because of inactivity. Feel free to comment, and we can always re-open it again.
No branches or pull requests
my webpack.config.js
{ test: /\.css$/, use: ['style-loader', 'css-loader'] }
index.css
body{ background-color: #f4f4f4; }
in the index.js
import './style/index.css'
and Chrome give this error
Uncaught SyntaxError: missing ) after argument list
but when i use 'webpack' in git bash it work correct, the body background become #f4f4f4.
The text was updated successfully, but these errors were encountered: