I get this error when webpack tries to run:
ERROR in ./bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot
Module parse failed:
./bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot Line 1: Unexpected token ILLEGAL
You may need an appropriate loader to handle this file type.
(Source code omitted for this binary file)
@ ./~/css-loader?importLoaders=1!./bower_components/bootstrap/dist/css/bootstrap.css 2:4480-4532 2:4551-4603
Here's my configuration
module: {
loaders: [
// Pass *.jsx files through jsx-loader transform
{ test: /\.js$/, loaders: ['react-hot','jsx?harmony'] },
{ test: /\.css$/, loader: "style-loader!css-loader?importLoaders=1" }
]
}
Is it something in my config that's wrong or missing something?
I get this error when webpack tries to run:
Here's my configuration
Is it something in my config that's wrong or missing something?