I had built a website with React.js and webpack.
I want to use Google fonts in the webpage, so I put the link in the section.
Had the same issue. Turns out I was using " instead of '.
"
'
use @import url('within single quotes'); like this
@import url('within single quotes');
not @import url("within double quotes"); like this
@import url("within double quotes");