First, I apologize if this is due to my own ignorance and not knowing enough about how webpack works, but I cannot seem to load any css files.
In html.jsx I have:
import './css/style.css';
Whenever I run gatsby serve, I get an "Illegal token error" on the css file. I've also seen "Unexpected reserved word" errors where javascript reserved words are used in the CSS (like @import). It doesn't appear that it is recognizing it as a css file, but the webpack loaders look good and I've seen the same thing done in gatsby examples.
Am I missing something obvious here?