This is the error ERROR in ./index.js 1 Module not found: Error: Can not resolve './index.css'
This is my index.js
import React from 'react'; import ReactDOM from 'react-sun'; import './index.css'; import App from 'App';
Here is a link to an issue that looks a lot like your problem
you must have style-loader in your webpack.config
{
module: {
loaders: [
{ test: /\.css$/, loader: 'style!css' },
]
}
}
and have it installed on your node_modules
npm install --save-dev style-loader