You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
EXCEPTION: Error: Uncaught (in promise): TypeError: s.replace is not a function
Ripping my hair out for a few hours now. Google isn't helping as nothing seems to indicate that style-loader or css-loader have any such issues previously. I just don't understand what the problem is?
The reason I wanted to do this is because I'm using Semantic UI and the CSS file only seems to work with these settings. I had it working in the past, but now it no longer does and I'm puzzled. Anyone have Semantic UI working with this project?
The text was updated successfully, but these errors were encountered:
I did the following:
This works fine.
I then change the following line in webpack config:
{test: /\.css$/, loader: 'raw-loader'},
to
{ test: /\.css$/, loader: 'style-loader!css-loader' },
and now I get the following error:
EXCEPTION: Error: Uncaught (in promise): TypeError: s.replace is not a function
Ripping my hair out for a few hours now. Google isn't helping as nothing seems to indicate that style-loader or css-loader have any such issues previously. I just don't understand what the problem is?
The reason I wanted to do this is because I'm using Semantic UI and the CSS file only seems to work with these settings. I had it working in the past, but now it no longer does and I'm puzzled. Anyone have Semantic UI working with this project?
The text was updated successfully, but these errors were encountered: